2019年10月21日 星期一

Android spinner 真的很浪費我的時間!

textsize 無效
textcolor 無效

文字靠右對齊
android:gravity="end"
android:textAlignment="textEnd"


下拉選單從文字下方出現
android:layout_height="26dp"
android:dropDownVerticalOffset="26dp"
android:spinnerMode="dropdown"

消除箭頭
android:background="@null"

下拉選單樣式設定
自定義layout

被選文字設定
override fun onItemSelected(parent: AdapterView<*>?, v: View?, position: Int, id: Long) {
                            context?.run {
                                (parent?.getChildAt(0) as TextView)
                                        .setTextColor(ContextCompat.getColor(this, R.color.xxx))
                                (parent.getChildAt(0) as TextView)
                                        .textSize = resources.getDimension(R.dimen.modify_text_middle).px
                            } 
                        }

沒有留言:

張貼留言