android – TextViews,它们之间有分隔线

前端之家收集整理的这篇文章主要介绍了android – TextViews,它们之间有分隔线前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在 android studio中重新编写以下布局:

因为我在android的东西是新的,我首先尝试使用LinearLayout,并认为这可能是不可能的.现在我正在尝试使用RelativeLayout我已经用颜色创建了这个块:

<RelativeLayout
                android:layout_width="fill_parent"
                android:layout_height="80dp"
                android:background="@color/red_top">
        </RelativeLayout>

现在我想问一下,如何将它分开,就像在顶部的图像1条和同一布局的底部的2条所示,我怎样才能放置相同的边框?

解决方法

您可以使用以下xml代码执行此操作:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/custom_toast_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#CD96CD"
        android:text="TEXT" />

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#000000" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:background="#CD96CD"
            android:text="TEXT" />

        <View
            android:layout_width="1dp"
            android:layout_height="fill_parent"
            android:background="#000000" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:background="#CD96CD"
            android:text="TEXT" />
    </LinearLayout>

</LinearLayout>
原文链接:https://www.f2er.com/android/314172.html

猜你在找的Android相关文章