대화 상자 회 전자의 popupBackground 색을 변경하고 싶습니다. 내 activity.xml
에서대화 상자 회 전자의 팝업 배경색 변경
:
<Spinner
android:id="@+id/mCategorySpinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/textView7"
android:entries="@array/recipeCategory"
android:spinnerMode="dialog"
android:popupBackground="@color/colorPrimary"
android:textAlignment="center" />
내 activity.java
에서 : 나는 XML에 android:popupBackground
을 변경하는 경우
categorySpinner=(Spinner) findViewById(R.id.mCategorySpinner);
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this, R.array.recipeCategory, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
categorySpinner.setPrompt("Choose category");
categorySpinner.setAdapter(new NothingSelectedSpinnerAdapter(
adapter,
R.layout.category_spinner_row_nothing_selected,
this));
아무 일도 일어나지, 그것은 기본 흰색 남아있다.
하지만 배경을 변경하면 작동하지만 대화의 배경이 아닙니다.
https://stackoverflow.com/questions/31425697/spinner-popup-background-color-issue –
여기에 읽기 : https://stackoverflow.com/questions/8922924/how-to-change-android -spinner-popupbackground –