2018-01-06 19:01:37 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-03-16 13:36:16 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-01-06 19:01:37 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2019-03-16 13:36:16 +01:00
|
|
|
android:layout_height="wrap_content"
|
2018-02-03 13:24:12 +01:00
|
|
|
android:gravity="center_vertical"
|
2019-03-16 13:36:16 +01:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/list_name_textview"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="60dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="?selectableItemBackground"
|
|
|
|
android:drawablePadding="8dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
|
|
|
tools:text="Example list" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/editListButton"
|
2020-01-30 21:37:28 +01:00
|
|
|
style="@style/TuskyImageButton"
|
2019-03-16 13:36:16 +01:00
|
|
|
android:layout_width="36dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
|
|
android:contentDescription="@string/action_more"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:src="@drawable/ic_more_horiz_24dp" />
|
|
|
|
</LinearLayout>
|