1挽荡、隱藏android中EditText自帶的的下劃線
android:background="@null"
或android:background="@/drawable/bg_edittext_norma.xml"
bg_edittext_norma.xml
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<!--商品描述的可編輯框-->
<solid android:color="#FFFFFF" />
<corners android:radius="10dip"/>
<stroke
android:width="1dip"
android:color="#BDC7D8" />
</shape>
<EditText
style="?android:attr/textViewStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null"
android:hint="輸入用戶名"
android:paddingBottom="5dip"
android:paddingTop="5dip" />
2搪搏、多行EditText的時(shí)候會(huì)出現(xiàn)光標(biāo)在中間的問題:
關(guān)鍵代碼
android:gravity="left"
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minLines="5"
android:background="#ffffff"
android:paddingLeft="5dp"
android:gravity="left" />
像這種。這是什么原因造成的呢?用來EdittText默認(rèn)是gravity是center.就是從中間對齊炎辨。我們把他改成left啊top啊就OK了。
3聪姿、修改EditText的光標(biāo)顏色
在使用EditText的XML 文件中加入一個(gè)屬性:
android:textCursorDrawable="@null"
//或者
android:textCursorDrawable = "#fff000"
這個(gè)屬性是用來控制光標(biāo)顏色的碴萧,"@null" 是作用是讓光標(biāo)顏色和text color一樣,當(dāng)然也可以修改成你自己的顏色。