Skip to content

Commit

Permalink
Fix spinner's text color
Browse files Browse the repository at this point in the history
  • Loading branch information
ltguillaume committed Oct 25, 2024
1 parent 7b60e48 commit b8de17e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/nl/asymmetrics/droidshows/DroidShows.java
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,14 @@ private void arrangeActionBar(Menu menu) {
getString(R.string.layout_app_name),
getString(R.string.archive),
getString(R.string.menu_log),
}));
}) {
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = super.getView(position, convertView, parent);
((TextView) view).setTextColor(getColor(android.R.color.primary_text_dark));
return view;
}
});
listView.postDelayed(new Runnable() {
public void run() {
spinner.setOnItemSelectedListener(new OnItemSelectedListener() {
Expand Down

0 comments on commit b8de17e

Please sign in to comment.