中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

給Android4.X版本的EditText恢復邊框

發布時間:2020-06-26 08:37:46 來源:網絡 閱讀:782 作者:詩和遠方abc 欄目:移動開發

Android4.0以后的版本的EditText的新特征是以單下劃線的形式出現,但是很多時候我們需要加上邊框看起來比較美觀.下面請看具體操作:

分為兩部分:未輸入文本時的狀態(normal)和點擊輸入文本的狀態(focused).

下面是EditText的控件:

<EditText  
        android:layout_width="fill_parent"  
        android:layout_height="36dip"  
        android:background="@drawable/edittext"  
        android:padding="5dip"  
        android:layout_margin="36dip"  
        android:textColorHint="#AAAAAA"  
        android:textSize="15dip"  
        android:hint="@string/asdasd_"
        android:singleLine="true" />

其中android:background="@drawable/edittext"  是另外定義的edittext.xml選擇器(存放在drawable任意文件夾下)下面定義edittext.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">  
    <item android:state_window_focused="false"  
        android:drawable="@drawable/edittext_normal" />  
    <item android:state_focused="true"  
        android:drawable="@drawable/edittext_focused" />  
</selector>

接著就是定義edittext_normal.xml和edittext_focused.xml文件,具體如下:

edittext_normal.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="3dip" />  
        <stroke android:width="1dip" android:color="#BDC7D8" />  
    </shape>

edittext_focused.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="3dip" />  
    <stroke android:width="1dip" android:color="#728ea3" />  

</shape>

效果如圖:給Android4.X版本的EditText恢復邊框

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

昂仁县| 焉耆| 安化县| 寿阳县| 喀喇沁旗| 太白县| 长垣县| 桦南县| 郎溪县| 噶尔县| 公主岭市| 安西县| 江西省| 铜川市| 交口县| 恩施市| 民勤县| 淮北市| 桂阳县| 庄浪县| 河东区| 容城县| 哈密市| 个旧市| 会泽县| 耒阳市| 龙州县| 砀山县| 和田县| 廊坊市| 高清| 万盛区| 盱眙县| 裕民县| 沙坪坝区| 高邮市| 昌平区| 剑阁县| 潍坊市| 施甸县| 和田县|