自定义RelativeLayout边框不显示

时间:2017-07-21 14:35:22

标签: android android-custom-view

我创建了一个自定义RelativeLayout来添加边框。但是没有出现边框。 当我添加背景属性时,将出现边框。当我删除背景属性时,边框消失。我想显示没有背景属性的边框。 任何人都可以解释我如何解决这个问题。

这是我的代码......

public class BorderRelativeLayout extends RelativeLayout {

Paint paint;
Rect rect;

public BorderRelativeLayout(Context context) {
    super(context);
    init();
}

public BorderRelativeLayout(Context context, AttributeSet attrs) {
    super(context, attrs);
    init();
}

public void init(){
    paint = new Paint();
    paint.setColor(Color.RED);
    paint.setAntiAlias(true);
    paint.setStyle(Paint.Style.STROKE);
    paint.setStrokeWidth(20f);
}

@Override
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    rect = new Rect(0,0,getWidth(),getHeight());
    canvas.drawRect(rect,paint);
}

}

1 个答案:

答案 0 :(得分:1)

对于RelativeLayout,除非您有背景设置,否则不会调用onDraw()。所以你不能以这种方式创建边框。

但是,与创建自定义子类相比,您可以更轻松地为RelativeLayout添加边框。只需在XML中创建一个ShapeDrawable并将其分配给您的布局。

<强> border.xml

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <stroke
        android:width="5dp"
        android:color="#f00"/>

</shape>

<强> layout.xml

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/border">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="24dp"
        android:textColor="#000"
        android:textStyle="bold"
        android:text="hello world"/>

</RelativeLayout>

enter image description here