码迷,mamicode.com
首页 > 移动开发 > 详细

Android EditText 光标样式设置

时间:2014-12-15 12:20:19      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:android   http   io   ar   color   sp   on   文件   bs   

android不同手机对于edittext光标显示样式不一,所以如果设置不同手机显示一样的效果呢,统一设置一个样式就可以了,示例代码如下:

<EditText

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:textCursorDrawable="@drawable/color_cursor"/>

样式文件:

<?xml version="1.0" encoding="utf-8"?>  

<shape xmlns:android="http://schemas.android.com/apk/res/android"  

    android:shape="rectangle">  

    <size android:width="1dp" />

    <solid android:color="#000000"  />

</shape>  


Android EditText 光标样式设置

标签:android   http   io   ar   color   sp   on   文件   bs   

原文地址:http://my.oschina.net/dotnet/blog/356119

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!