mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingVertical="5dp">
|
|
|
|
<ImageButton
|
|
android:id="@+id/back_imageButton"
|
|
android:layout_width="27dp"
|
|
android:layout_height="27dp"
|
|
android:layout_marginVertical="10dp"
|
|
android:layout_marginLeft="15dp"
|
|
android:background="?android:selectableItemBackgroundBorderless"
|
|
android:backgroundTint="@android:color/transparent"
|
|
android:src="@drawable/ic_arrow_back" />
|
|
|
|
<TextView
|
|
android:id="@+id/topBar_textView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginLeft="25dp"
|
|
android:text="@string/settings"
|
|
android:textSize="20sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/settings"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" />
|
|
</LinearLayout> |