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

37 lines
1.3 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"
2022-06-25 21:41:11 +05:30
android:layout_height="wrap_content"
2022-06-26 15:50:56 +05:30
android:paddingVertical="5dp">
2022-06-07 23:46:58 +05:30
2022-06-08 14:37:47 +05:30
<ImageButton
android:id="@+id/back_imageButton"
2022-06-28 19:31:40 +05:30
android:layout_width="27dp"
android:layout_height="27dp"
android:layout_marginVertical="10dp"
2022-06-27 22:47:52 +05:30
android:layout_marginLeft="15dp"
2022-06-25 21:25:03 +05:30
android:background="?android:selectableItemBackgroundBorderless"
2022-06-27 22:47:52 +05:30
android:backgroundTint="@android:color/transparent"
2022-06-08 14:37:47 +05:30
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"
2022-06-27 22:47:52 +05:30
android:layout_gravity="center"
2022-06-26 13:31:43 +05:30
android:layout_marginLeft="25dp"
2022-06-27 22:47:52 +05:30
android:text="@string/settings"
android:textSize="20sp" />
2022-06-07 23:46:58 +05:30
</LinearLayout>
<LinearLayout
2022-05-11 01:35:15 +05:30
android:id="@+id/settings"
android:layout_width="match_parent"
2022-06-27 22:47:52 +05:30
android:layout_height="match_parent"
android:orientation="vertical" />
2022-05-11 01:35:15 +05:30
</LinearLayout>