2024-01-28 05:57:41 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
2024-01-28 06:01:51 +00:00
|
|
|
android:id="@+id/tab_title"
|
2024-01-28 05:57:41 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="TAB TITLE"
|
|
|
|
android:layout_gravity="center"/>
|
|
|
|
|
|
|
|
<ImageButton
|
2024-01-28 06:01:51 +00:00
|
|
|
android:id="@+id/tab_modify"
|
2024-01-28 05:57:41 +00:00
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
app:srcCompat="@drawable/description_24px" />
|
|
|
|
</LinearLayout>
|