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"
|
2020-03-29 18:55:00 +02:00
|
|
|
android:ellipsize="end"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:gravity="bottom"
|
2020-03-29 18:55:00 +02:00
|
|
|
android:singleLine="true"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:textSize="16sp"
|
2020-03-29 18:55:00 +02:00
|
|
|
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>
|