这是我的微调器的XML,但它不起作用。
<Spinner
android:id="@+id/frequency"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/spinner_voices"
android:gravity="center|center_horizontal"
/>
答案 0 :(得分:2)
您需要为微调器项设置自己的布局。
ArrayAdapter adap = new ArrayAdapter<String>(this, R.layout.spinner_item, new String[]{"ABC", "DEF", "GHI"});
spriner.setAdapter(adap);
R.layout.spinner_item是包含内容的布局:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:gravity="center"/>