2019-07-24 22:19:43 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-14 14:41:00 +02:00
|
|
|
android:clickable="false"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="12dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="5dp"
|
|
|
|
android:layout_marginTop="2dp"
|
|
|
|
android:textColor="@color/colorPrimary"
|
|
|
|
android:textSize="13sp" />
|
2019-07-24 22:19:43 +02:00
|
|
|
|
2019-09-14 14:41:00 +02:00
|
|
|
</RelativeLayout>
|