ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(getApplicationContext(),
android.R.layout.simple_spinner_item, list);
dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
dataAdapter.notifyDataSetChanged();
s2.setAdapter(dataAdapter);
我的微调器允许我选择数组列表,并且能够使用onItemSelected方法,但所选的值不会显示在微调器中
<Spinner
android:id="@+id/reasonspin"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="@color/black" />
当我将微调器的背景颜色更改为黑色时,我的文字会显示,这意味着我的文字为白色,但将文字颜色更改为黑色无效
答案 0 :(得分:0)
只需检查视图的文字颜色和背景颜色,文字颜色可能与背景颜色相同。