close
在layout EditText裡面增加屬性
顯示焦點
android:cursorVisible="true"
隱藏焦點
android:cursorVisible="false"
修改焦點的顏色
android:textCursorDrawable="@null"
設置為null表示跟字體同樣顏色
EditText 不自動顯示焦點
在ativity的layout加上
android:focusable="true" android:focusableInTouchMode="true"
不自動彈出鍵盤
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
全站熱搜
留言列表