欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android中实现EditText圆角的方法

程序员文章站 2023-11-29 08:15:22
一、在drawable下面添加xml文件rounded_editview.xml 复制代码 代码如下:

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

复制代码 代码如下:

<?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

复制代码 代码如下:

<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"/>