mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-08 03:37:26 +01:00
23 lines
851 B
XML
23 lines
851 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="vertical" android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="16dp"
|
||
|
android:clickable="true"
|
||
|
android:focusable="true"
|
||
|
android:background="?attr/selectableItemBackground">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/name_text_view_item_acknowledgement"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="@color/primaryTextColor"
|
||
|
android:textSize="16sp" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/introduction_text_view_item_acknowledgement"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="8dp" />
|
||
|
|
||
|
</LinearLayout>
|