Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2992ce6 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Merge cherrypicks of ['googleplex-android-review.googlesource.com/32740902'] into 25Q2-release.

Change-Id: I9603256482e5a5e07154d38c50aff050cf49f591
parents f0583086 ccc1005b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -76,8 +76,8 @@ public class SettingsSpinnerAdapter<T> extends ArrayAdapter<T> {
        if (iconView != null) {
            iconView.setVisibility((position == mSelectedPosition) ? View.VISIBLE : View.GONE);
        }
        String item = (String) getItem(position);
        textView.setText(item);
        T item = getItem(position);
        textView.setText(item == null ? "" : item.toString());
        return view;
    }