2019-08-24 10:27:34 +02:00
|
|
|
<?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"
|
2019-08-27 10:46:46 +02:00
|
|
|
android:paddingTop="16dp"
|
|
|
|
android:paddingBottom="16dp"
|
|
|
|
android:paddingStart="72dp"
|
|
|
|
android:paddingEnd="16dp"
|
2019-08-24 10:27:34 +02:00
|
|
|
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"
|
2020-02-27 09:58:15 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-09-20 15:27:00 +02:00
|
|
|
android:textSize="?attr/font_16" />
|
2019-08-24 10:27:34 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/introduction_text_view_item_acknowledgement"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-20 15:27:00 +02:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:textSize="?attr/font_default" />
|
2019-08-24 10:27:34 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|