码迷,mamicode.com
首页 > 其他好文 > 详细

Edittext的style设置

时间:2016-08-28 23:46:11      阅读:1014      评论:0      收藏:0      [点我收藏+]

标签:

首先是在drawable中设置一个有弧度的长方形样式

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#ffffff"></solid>
    <corners
        android:bottomLeftRadius="15dp"
        android:bottomRightRadius="15dp"
        android:topLeftRadius="15dp"
        android:topRightRadius="15dp"></corners>
</shape>

 将background设置为以上的地址,drawableleft是设置左边有一个图片,有人放一个ImageView,我觉得无所谓啦。

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/text"
        android:background="@drawable/rounded_edittext"
        android:drawableLeft="@mipmap/icon48" />

 

Edittext的style设置

标签:

原文地址:http://www.cnblogs.com/lyxin/p/5816356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!