NewPipe/app/src/main/res/layout/list_choose_tabs.xml

62 lines
2.5 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-10-09 20:24:02 +02:00
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginTop="3dp"
2020-10-09 20:24:02 +02:00
android:layout_marginRight="5dp"
android:layout_marginBottom="3dp"
android:focusable="true"
android:minHeight="?listPreferredItemHeightSmall"
android:orientation="horizontal"
app:cardCornerRadius="5dp"
app:cardElevation="4dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_vertical">
2019-10-04 14:59:08 +02:00
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/tabIcon"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="16dp"
tools:ignore="ContentDescription,RtlHardcoded"
2021-03-27 15:45:49 +01:00
tools:src="@drawable/ic_kiosk_hot" />
<TextView
android:id="@+id/tabName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="16dp"
android:layout_marginTop="6dp"
2020-10-09 20:24:02 +02:00
android:layout_marginBottom="6dp"
android:layout_toLeftOf="@+id/handle"
android:layout_toRightOf="@+id/tabIcon"
android:ellipsize="end"
android:maxLines="2"
android:textAppearance="?textAppearanceListItem"
tools:ignore="RtlHardcoded"
2020-10-09 20:24:02 +02:00
tools:text="Lorem ipsum dolor sit amet" />
2019-10-04 14:59:08 +02:00
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/handle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:paddingLeft="16dp"
android:paddingTop="12dp"
2020-10-09 20:24:02 +02:00
android:paddingRight="16dp"
android:paddingBottom="12dp"
2021-03-27 15:45:49 +01:00
app:srcCompat="@drawable/ic_drag_handle"
2020-10-09 20:24:02 +02:00
tools:ignore="ContentDescription,RtlHardcoded" />
</RelativeLayout>
2020-10-09 20:24:02 +02:00
</androidx.cardview.widget.CardView>