一、今日学习内容
3、多行EditText的时候会出现光标在中间的问题:
关键代码
1
|
android:gravity= "left" |
1
2
3
4
5
6
7
|
< EditText android:layout_width = "match_parent" android:layout_height = "wrap_content" android:minLines = "5" android:background = "#ffffff" android:paddingLeft = "5dp" android:gravity = "left" /> |
像这种。这是什么原因造成的呢?用来EdittText默认是gravity是center.就是从中间对齐。我们把他改成left啊top啊就OK了。
4、修改EditText的光标颜色
在使用EditText的XML 文件中加入一个属性:
1
2
3
|
android:textCursorDrawable= "@null" //或者 android:textCursorDrawable = "#fff000" |
这个属性是用来控制光标颜色的,"@null" 是作用是让光标颜色和text color一样,当然也可以修改成你自己的颜色。
二、问题
暂无,参考脚本之间
三、明日计划
继续