forked from github/wulkanowy-mirror
21 lines
751 B
XML
21 lines
751 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?selectableItemBackground"
|
|
android:orientation="vertical"
|
|
android:padding="16dp"
|
|
tools:context=".ui.modules.debug.DebugAdapter">
|
|
|
|
<TextView
|
|
android:id="@+id/debugItemName"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:gravity="bottom"
|
|
android:singleLine="true"
|
|
android:textSize="16sp"
|
|
tools:text="@tools:sample/lorem/random" />
|
|
</LinearLayout>
|