欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android中實(shí)現(xiàn)EditText圓角的方法

 更新時間:2013年03月14日 09:49:59   作者:  
Android中實(shí)現(xiàn)EditText圓角的方法,需要的朋友可以參考一下

一、在drawable下面添加xml文件rounded_editview.xml

復(fù)制代碼 代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="#FFFFFF"></solid>
    <padding android:left="10dp"
        android:top="10dp"
        android:right="10dp"
        android:bottom="10dp"></padding>
    <corners android:radius="15dp"></corners>
</shape>

二、在EditText的background屬性中引用這個xml

復(fù)制代碼 代碼如下:

<EditText
        android:id="@+id/et_username"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inputType="text"
        android:background="@drawable/rounded_editview"
        android:hint="@string/text_hint_username"/>

相關(guān)文章

最新評論