View view = inflater1.inflate(R.layout.main, null);
ArrayAdapter<String> adap = new ArrayAdapter<String>(getActivity(), R.layout.spin_text), (String[]) getResources().getStringArray(R.array.itemlist));
Spinner spin = (Spinner)view.findViewById(R.id.spin);
spin.setAdapter(adap);
我正在使用像上面那样的微调器。 现在,我想在java代码中更改微调器的项目颜色,我试着这样:
View view_text = inflater2.inflate(R.layout.spin_text, null);
TextView spin_text = (TextView)view_text.findViewById(R.id.spin_text);
<!-- spin_text.xml -->
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/spin_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="15sp"
android:textColor="#000000"
android:padding="4dp" >
</TextView>
单击按钮时,此代码有效:
spin_text.setTextColor(colorCode);
但是,没有改变任何东西.. 我做错了什么?
答案 0 :(得分:0)
为您的微调项创建自定义XML文件。
spinner_item.xml:
为该文件中的文本提供自定义的颜色和大小。
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="20sp"
android:gravity="left"
android:textColor="#FF0000"
android:padding="5dip"
/>
现在使用此文件显示您的微调项,例如:
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.spinner_item,list);