mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2025-02-27 20:43:15 +00:00
22 lines
819 B
XML
22 lines
819 B
XML
|
<?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
|
||
|
android:id="@+id/textView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="TAB TITLE"
|
||
|
android:layout_gravity="center"/>
|
||
|
|
||
|
<ImageButton
|
||
|
android:id="@+id/imageButton"
|
||
|
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>
|