当我正在开发android应用程序时,我想在哪里更改微调器提示背景颜色和文本颜色? 谢谢。
答案 0 :(得分:0)
更改文字颜色和样式: make xml layout spinner_text.xml包含:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:paddingBottom="5dp"
android:paddingTop="5dp"
android:textSize="18sp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:textColor="@android:color/black" />
然后在你的类中设置ArrayAdapter以使用它:
Spinner yourSpinner = (Spinner) findViewById(R.id.spinnerID);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(getActivity(), R.layout.spinner_text, yourStingArray);
yourSpinner.setAdapter(adapter);
更改xml中的微调器背景:
<Spinner
android:layout_width="fill_parent"
android:layout_height="40dp"
android:id="@+id/sCategory"
android:entries="@array/angleList"
android:background="@drawable/spinner_shape"
android:layout_marginBottom="10dp"
android:popupBackground="@drawable/spinner_shape" />
并在drawable中执行任何操作:spinner_shape
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/colorFour" />
<stroke
android:color="@color/colorTwo"
android:width="2dp" />
<corners
android:bottomLeftRadius="4dp"
android:bottomRightRadius="4dp"
android:topLeftRadius="4dp"
android:topRightRadius="4dp" />
android:popupBackground将执行放置项列表外观 android:后台会做微调器看