这个背景可以在android中绘制

时间:2016-08-19 09:24:42

标签: android view shape

我需要在android中为TextView(水平线交叉视图,但没有重叠文本)做背景,我想我应该用形状来做,但我不知道如何。< / p>

任何人都有一个很好的方法吗?

image

1 个答案:

答案 0 :(得分:-1)

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/base"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:layout_margin="10dp"
    android:background="@color/white"
    android:orientation="horizontal"
    android:weightSum="10">


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="100dp">

        <View
            android:id="@+id/view"
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_alignParentStart="true"
            android:layout_centerVertical="true"
            android:background="@android:color/black"></View>

        <View
            android:id="@+id/vieaw"
            android:layout_width="1dp"
            android:layout_height="match_parent"
            android:layout_alignParentStart="true"
            android:layout_centerVertical="true"
            android:background="@android:color/black"></View>

        <View
            android:id="@+id/vieaaw"
            android:layout_width="1dp"
            android:layout_height="match_parent"
            android:layout_centerVertical="true"
            android:background="@android:color/black"
            android:layout_alignParentEnd="true"></View>

        <TextView
            android:id="@+id/textView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:paddingRight="10dp"
            android:paddingLeft="10dp"
            android:background="@color/white"
            android:text="12 ABCDFE GHI" />
    </RelativeLayout>
</FrameLayout>