mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 15:20:31 +05:30
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="horizontal"
|
||
|
android:paddingHorizontal="25dp"
|
||
|
android:paddingVertical="10dp">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/group_name"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_marginStart="10dp"
|
||
|
android:layout_weight="1" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/edit_group"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_marginHorizontal="10dp"
|
||
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||
|
android:src="@drawable/ic_edit" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/delete_group"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_marginHorizontal="10dp"
|
||
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||
|
android:src="@drawable/ic_delete" />
|
||
|
|
||
|
</LinearLayout>
|