2019-07-03 04:49:45 +05:30
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-09-14 18:11:00 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-07-03 04:49:45 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-14 18:11:00 +05:30
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
2019-12-11 02:21:02 +05:30
|
|
|
android:theme="@style/AppTheme.ActionBar"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupMenu"
|
2019-09-14 18:11:00 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2019-07-03 04:49:45 +05:30
|
|
|
|
|
|
|
<FrameLayout
|
2019-09-14 18:11:00 +05:30
|
|
|
android:id="@+id/settings"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
</LinearLayout>
|