wulkanowy-mod/app/src/main/res/layout/item_debug.xml

21 lines
751 B
XML
Raw Normal View History

2021-06-21 10:29:04 +02:00
<?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>