本帖最後由 tonyh 於 2017-8-26 17:19 編輯
試於資源路徑下新增 res\layout\my_spinner_style.xml,自訂 spinner 的風格。
- <?xml version="1.0" encoding="utf-8"?>
- <TextView xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent" android:layout_height="50dp"
- android:background="#c2f6ff"
- android:textSize="26sp"
- android:textColor="#ff0000"
- android:text="hello"
- android:gravity="center_vertical">
- </TextView>
複製代碼 |