我想在我的活动中附加微调器,但是尽快将微调器代码放在xml上它给了我这个错误?我没有在活动方面写任何代码只是在布局上删除spinner xml它显示错误
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_alignParentBottom="true"
android:background="#fff">
<TextView
android:id="@+id/search"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Search"
android:textColor="#3F51B5"
android:textSize="17sp"
android:padding="5dp"
android:layout_marginRight="5dp"
android:layout_alignParentRight="true" />
<TextView
android:id="@+id/cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cancel"
android:textColor="#000"
android:gravity="left"
android:textSize="17sp"
android:padding="5dp"
android:layout_alignParentLeft="true"
android:layout_marginLeft="5dp"/>
</RelativeLayout>
<Spinner
style="@style/width_height"
android:layout_below="@+id/scrollView"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"></Spinner>
</LinearLayout
答案 0 :(得分:0)
你为spinner值创建了一个数组吗? 例如:
<string-array name="country_arrays">
<item>Malaysia</item>
<item>United States</item>
<item>Indonesia</item>
<item>France</item>
<item>Italy</item>
<item>Singapore</item>
<item>New Zealand</item>
<item>India</item>
</string-array>
在微调器中,您可以添加属性条目
<Spinner
style="@style/width_height"
android:layout_below="@+id/scrollView"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:entries="@array/country_arrays"
>
</Spinner>