我想更改用于将光标定位在EditText内的(蓝色)按钮的颜色。任何想法如何做到这一点?
答案 0 :(得分:2)
感谢您的支持。我正在寻找的是在这个问题上回答的问题: How to change color / appearance of EditText select handle / anchor?
答案 1 :(得分:1)
<item name="android:editTextStyle">@style/myEditText</item>
<style name="myEditText" parent="@android:style/Widget.Holo.Light.EditText">
<item name="android:background">@android:drawable/editbox_background_normal</item>
<item name="android:textCursorDrawable">@android:drawable/my_cursor_drawable</item>
<item name="android:height">40sp</item> </style>
应该有用......
答案 2 :(得分:1)
您可以尝试将text_select_handle
drawable(此处为Other Drawables Resources)设置为您的样式,如@ user2383106所述(另请参阅:Change the color of the cursor of an EditText in Android 3.0)。
希望这会有所帮助。