2022-05-11 01:35:15 +05:30
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-09-24 14:25:16 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-05-11 01:35:15 +05:30
|
|
|
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-09-24 14:25:16 +05:30
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
2022-06-07 23:46:58 +05:30
|
|
|
android:layout_width="match_parent"
|
2022-06-25 21:41:11 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-09-24 14:25:16 +05:30
|
|
|
app:navigationIcon="@drawable/ic_arrow_back"
|
|
|
|
app:title="@string/settings" />
|
2022-06-07 23:46:58 +05:30
|
|
|
|
2022-09-24 14:25:16 +05:30
|
|
|
<FrameLayout
|
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-09-24 14:25:16 +05:30
|
|
|
|
2022-05-11 01:35:15 +05:30
|
|
|
</LinearLayout>
|