46 lines
1.4 KiB
XML
46 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<me.grishka.appkit.views.UsableRecyclerView
|
|
android:id="@+id/list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
|
|
<LinearLayout
|
|
android:background="@drawable/bg_onboarding_panel"
|
|
android:id="@+id/button_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
android:orientation="vertical">
|
|
|
|
<Button
|
|
android:id="@+id/btn_back"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginTop="8dp"
|
|
style="@style/Widget.Mastodon.M3.Button.Text"
|
|
android:text="@string/server_rules_disagree"/>
|
|
|
|
<Button
|
|
android:id="@+id/btn_next"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:minWidth="145dp"
|
|
style="@style/Widget.Mastodon.M3.Button.Filled"
|
|
android:visibility="gone"
|
|
android:text="@string/i_agree" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |