Shelter/app/src/main/res/layout/fragment_setup_wizard_generic_text.xml
Peter Cai 924ad14008 SetupWizard: layout: no scroll view is needed
* SetupWizardLayout has a built-in one
2021-03-15 20:16:29 +08:00

14 lines
503 B
XML

<?xml version="1.0" encoding="utf-8"?>
<com.android.setupwizardlib.SetupWizardLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/wizard"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/setup_wizard_generic_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="40dp" />
</com.android.setupwizardlib.SetupWizardLayout>