android- 如何在一行之间插入一行

android- How to insert a line between a line

我想在一行之间插入一行。这是我需要的图像:

我真的不知道该怎么办? 你能帮帮我吗

您必须编写以下代码:

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent">
      <ImageView
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_width="fill_parent" 
        android:background="line_image"
        android:layout_height="fill_parent"/>
        <TextView
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:layout_alignParentLeft="true"
           android:padding="10dp"
           android:text="test"/>
    </RelativeLayout>

请使用这个,

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white" >

    <View
        android:layout_width="match_parent"
      android:layout_marginLeft="20dp"
      android:layout_marginRight="20dp"
        android:layout_height="1dp"
        android:layout_marginTop="20dp"
        android:background="@android:color/black" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="10dp"
        android:background="@android:color/white"
        android:layout_alignParentRight="true"
        android:layout_marginRight="50dp"
        android:textColor="@android:color/black"
        android:text="Test" />

</RelativeLayout>

我只是给你样品,你可以根据你的要求改变颜色或绘图。如果您还有任何疑问,请告诉我。