This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
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"/>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|