2019-05-04 16:20:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:orientation="horizontal" android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:clickable="true"
|
|
|
|
|
android:focusable="true"
|
|
|
|
|
style="@style/SelectableItemBackground"
|
|
|
|
|
android:id="@+id/item_layout">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/item_image"
|
|
|
|
|
android:layout_width="24dp"
|
|
|
|
|
android:layout_height="24dp"
|
|
|
|
|
android:layout_margin="16dp"
|
2019-05-21 18:55:29 +02:00
|
|
|
android:tint="@color/textcolor"/>
|
2019-05-04 16:20:14 +02:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/item_text"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-05-21 18:55:29 +02:00
|
|
|
android:textColor="@color/textcolor"
|
2019-05-04 16:20:14 +02:00
|
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
|
|
2019-07-26 13:31:31 +02:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:id="@+id/item_text_no_lang"
|
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
2019-05-04 16:20:14 +02:00
|
|
|
</LinearLayout>
|