Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
スピナーのポップアップ スクロールバーの色を変更するにはどうすればよいですか?
何らかの理由で、現在スクロールバーの色が白地に白で表示されていません。
スピナーのスタイルを変更して、スピナーの色を変更できます。
以下のように style.xml でスタイルを作成します。
<style name="App_SpinnerStyle" > <item name="android:scrollbarThumbVertical">@color/colorAccent</item> </style>
次に、スピナーのxmlで:
android:popupTheme="@style/App_SpinnerStyle"
試してみました!!