spinner
中的所有内容设置为白色。
问题出在这张图片中
就像你看到我有白色而且总是黑色,黑色背景这个按钮不太明显。
以下是一些代码:
<Spinner
android:id="@+id/spinner_money"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="10dp"
android:text="50$"
android:textColor="@color/white"
android:textSize="20sp" />
什么是错的家伙?
这里我认为微调器
private void configureSpinnerDataAndLogic() {
String[] arraySpinner = new String[]{
"50", "100", "150", "200", "250", "300", "400", "500"};
ArrayAdapter<String> adapter = new ArrayAdapter<>(getContext(),
android.R.layout.simple_list_item_1, arraySpinner);
spinnerData.setAdapter(adapter);
spinnerData.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
((TextView) parent.getChildAt(0)).setTextColor(Color.WHITE);
String text = spinnerData.getSelectedItem().toString();
int temp = Integer.parseInt(text);
text_profit.setText((temp * 2) + " $ " + "100%");
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
});
}
编辑:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:width="20dp"
android:gravity="right"
android:layout_centerVertical="true"
android:height="20dp">
<rotate
android:fromDegrees="45"
android:pivotX="135%"
android:pivotY="15%"
android:toDegrees="45">
<shape android:shape="rectangle">
<solid
android:color="@color/white" />
</shape>
</rotate>
</item>
</layer-list>
答案 0 :(得分:0)
您可以在xml中设置旋转器背景颜色,如下所示:
android:background="@color/white"
如果您正在使用DropDown,那么在xml中就像这样:
android:popupBackground="@color/your_color_for_items"
如果您使用自定义适配器,请检查此thread。
答案 1 :(得分:0)
在微调框上尝试使用此代码
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
因此您的最终Spinner将如下所示:
<Spinner
android:id="@+id/spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="80dp"
android:spinnerMode="dropdown"
local:popupTheme="@style/ThemeOverlay.AppCompat.Light"
local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:visibility="gone" />