首页 > 代码库 > Edittext的style设置
Edittext的style设置
首先是在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设置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。