1
0
mirror of https://github.com/wulkanowy/wulkanowy.git synced 2025-03-14 16:34:00 +01:00
wulkanowy-mirror/app/src/main/res/layout/item_license.xml

32 lines
1.1 KiB
XML
Raw Normal View History

2019-08-26 20:54:20 +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="64dp"
android:background="?selectableItemBackground"
android:orientation="vertical"
android:paddingStart="16dp"
android:paddingLeft="16dp"
android:paddingEnd="16dp"
android:paddingRight="16dp">
<TextView
android:id="@+id/licenseItemName"
android:layout_width="match_parent"
android:layout_height="28dp"
android:ellipsize="end"
2019-08-26 20:54:20 +02:00
android:gravity="bottom"
android:singleLine="true"
2019-08-26 20:54:20 +02:00
android:textSize="16sp"
tools:text="@tools:sample/lorem/random" />
2019-08-26 20:54:20 +02:00
<TextView
android:id="@+id/licenseItemSummary"
android:layout_width="match_parent"
android:layout_height="20dp"
android:gravity="bottom"
android:textColor="?android:textColorSecondary"
android:textSize="14sp"
tools:text="@tools:sample/lorem" />
</LinearLayout>