blob: 4d9f95a404fd956cb78103b3b921258efc1abee9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="fill_horizontal" >
<Spinner
android:id="@+id/spinner"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:prompt="@string/common.appname"
android:background="@drawable/abc_spinner_mtrl_am_alpha"/>
</RelativeLayout>
|