我需要创建带有红色边框(宽度1px
)的白色矩形形状以及从下面连接到它的另一个红色矩形。像这样:
白色矩形将为EditText
,同时会出现红色边框和红色矩形,以便通知用户输入错误。没有什么花哨。
我已经尝试了几种方法,但由于相同的原因,它们都没有看起来很好 - 颜色朝向形状边缘变化(看起来最外面的像素是变化的像素)。这个放大的图片可以看出这个问题:
此特定快照的层次结构为LinearLayout
,背景为红色,padding
为1px
,但我在尝试使用其他方法时也观察到相同的效果(包括绘制边框)以编程方式EditText
左右。
此效果看起来像Android的标准,我的问题是如何禁用它?
答案 0 :(得分:0)
检查以下示例,希望它能为您提供帮助。
rect_shape.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
android:width="3dp"
android:color="#EF9A9A"/>
<solid android:color="@android:color/white"/>
</shape>
layout.xml
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/rectangle_shape"
android:orientation="vertical">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:lines="3"
android:padding="5dp"/>
<View
android:layout_width="match_parent"
android:layout_height="3dp"
android:background="#EF9A9A"/>
<TextView
android:layout_width="match_parent"
android:layout_height="36dp"
android:layout_marginBottom="3dp"
android:layout_marginLeft="3dp"
android:layout_marginRight="3dp"
android:background="#EF5350"/>
</LinearLayout>
输出:
答案 1 :(得分:0)
以防任何人偶然发现这个问题 - 描述的行为是一些与模拟器相关的工件。在真实的设备上,颜色很好。