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

时间:2015-01-12 06:51:31

标签: android android-theme android-styles

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

enter image description here

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

2 个答案:

答案 0 :(得分:2)

请使用此,

<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>

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

答案 1 :(得分:0)

您必须编写以下代码:

<?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>