自定義 EditText 樣式

極力推薦文章:歡迎收藏
Android 乾貨分享 android

閱讀五分鐘,每日十點,和您一塊兒終身學習,這裏是程序員Android

本篇文章主要介紹 Android 開發中的部分知識點,經過閱讀本篇文章,您將收穫如下內容:程序員

1.自定義EditText 圓角矩形背景
2.自定義EditText 背景

Android中自帶的 EditText 樣式比較醜,爲了美化 EditText 可以使用一下方法。
實現效果以下:微信

自定義EditText 背景

1.自定義EditText 圓角矩形背景

自定義圓角矩形 custom_edittext_background.xml學習

<EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:background="@drawable/custom_edittext_background"
        android:gravity="center"
        android:hint="自定義EditText"
        android:padding="8dp"
        android:textSize="16sp" />

2.自定義EditText 背景

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <!-- 圓角-->
    <corners android:radius="5dp" />
    <!--描邊-->
    <stroke
        android:width="1dp"
        android:color="@android:color/holo_blue_light" />

</shape>

至此,本篇已結束,若有不對的地方,歡迎您的建議與指正。同時期待您的關注,感謝您的閱讀,謝謝!spa

微信關注公衆號:  程序員Android,領福利

相關文章
相關標籤/搜索