24 lines
767 B
XML
24 lines
767 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="?android:attr/selectableItemBackground"
|
||
|
android:orientation="vertical"
|
||
|
android:padding="16dp"
|
||
|
tools:showIn="@layout/activity_licences">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/name"
|
||
|
style="@style/AppTheme.ItemTitle"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
tools:text="Super library" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/licence"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
tools:text="MIT License" />
|
||
|
|
||
|
</LinearLayout>
|