Android中实现EditText圆角的方法

来源:爱站网时间:2019-12-27编辑:网友分享
我们在Android开发中需要为图片添加圆角提供集中方法,本文是爱站技术频道小编为大家带来的Android中实现EditText圆角的方法,希望对你学习这方面知识有所帮助。

我们在Android开发中需要为图片添加圆角提供集中方法,本文是爱站技术频道小编为大家带来的Android中实现EditText圆角的方法,希望对你学习这方面知识有所帮助。

一、在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"/>

以上就是Android中实现EditText圆角的方法介绍,相信认真看完的朋友都已经懂了,爱站技术频道小编建议大家进行操作试试。

上一篇:Android 中对于图片的内存优化方法

下一篇:android ListView自动滚动方法

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载