LibreTube/app/src/main/res/layout/activity_settings.xml

35 lines
1.2 KiB
XML
Raw Normal View History

2022-05-11 01:35:15 +05:30
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
2022-06-07 23:46:58 +05:30
android:layout_height="match_parent"
android:orientation="vertical">
2022-05-11 01:35:15 +05:30
2022-06-07 23:46:58 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
2022-06-08 14:37:47 +05:30
<ImageButton
android:id="@+id/back_imageButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:layout_marginVertical="10dp"
android:backgroundTint="@android:color/transparent"
android:src="@drawable/ic_arrow_back" />
2022-06-07 23:46:58 +05:30
<TextView
android:id="@+id/topBar_textView"
2022-06-07 23:46:58 +05:30
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/settings"
android:layout_marginLeft="14dp"
android:textSize="20sp"
2022-06-08 14:37:47 +05:30
android:layout_gravity="center" />
2022-06-07 23:46:58 +05:30
</LinearLayout>
<LinearLayout
2022-05-11 01:35:15 +05:30
android:id="@+id/settings"
2022-06-07 23:46:58 +05:30
android:orientation="vertical"
2022-05-11 01:35:15 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>