1.dayText3.setInputType(InputType.TYPE_NULL); 不让edittext按enter键后,弹出输入框
2.在使用EditText的XML 文件中加入一个属性:
android:textCursorDrawable="@null"
android:textCursorDrawable 这个属性是用来控制光标颜色的,
"@null" 是作用是让光标颜色和text color一样
android:textCursorDrawable 的用法可以查看android sdk
3.如何隐藏edittext闪烁光标
在EditText控件的xml中添加这个属性就行了
android:cursorVisible="false"
4.需要在EditText输入的时候左起位置和自动换行后每行的左起位置都能空出10dp
android:paddingLeft="10dip"
时间: 2024-11-09 17:04:20