2023-03-28 15:46:47 +05:30
|
|
|
<?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"
|
2023-05-08 21:29:55 +05:30
|
|
|
android:paddingHorizontal="5dp"
|
2023-03-28 15:46:47 +05:30
|
|
|
android:paddingVertical="10dp">
|
|
|
|
|
2023-08-20 19:49:34 +05:30
|
|
|
<ImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginHorizontal="10dp"
|
|
|
|
android:src="@drawable/ic_drag" />
|
|
|
|
|
2023-03-28 15:46:47 +05:30
|
|
|
<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" />
|
|
|
|
|
2023-08-20 19:49:34 +05:30
|
|
|
</LinearLayout>
|