8767d2ed3d
* Theme refactoring * disable the automatic tinting of surfaces with elevation in dark mode * make the media warning visible again with the dark theme * fix nav bar on api 27+ * use correct color for all media warnings
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
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"
|
|
style="@style/TuskyImageButton"
|
|
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>
|