29 lines
No EOL
1.1 KiB
XML
29 lines
No EOL
1.1 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:id="@+id/abl"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?android:actionBarSize"
|
|
android:background="@color/colorPrimary"
|
|
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<fragment
|
|
android:id="@+id/thanks_fragment"
|
|
android:name="com.tangem.ui.fragment.SettingsFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/abl"
|
|
tools:xml="@xml/pref_main" />
|
|
|
|
</RelativeLayout> |