19 lines
495 B
XML
19 lines
495 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
|
a:layout_width="match_parent"
|
|
a:layout_height="match_parent"
|
|
a:orientation="vertical">
|
|
|
|
<TextView
|
|
a:text="Do you want to use optimized layout for large screens or just big buttons?"
|
|
a:layout_height="wrap_content"
|
|
a:layout_width="match_parent" />
|
|
|
|
<Spinner
|
|
a:id="@+id/wizard_layout_spinner"
|
|
a:layout_height="wrap_content"
|
|
a:layout_width="match_parent" />
|
|
|
|
</LinearLayout>
|