如何并排放置线性布局和相对布局

时间:2014-03-31 11:14:43

标签: android android-layout

尝试为ListView项创建XML文件,如下所示:

Item

这里我不知道如何为此UI创建XML文件。我尝试在一个RelativeLayout中获取两个TextView(左蓝框内容),在一个RelativeLayout中获取剩余内容(右蓝框内容)。我没有得到如何并排放置两个布局。如果我的方法有误,请建议合适的解决方案。

2 个答案:

答案 0 :(得分:4)

你的方法很好,唯一的问题是你必须让两个独立的布局彼此相邻。您可以简单地将布局放在LinearLayout中,并将方向设置为horizontal

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="horizontal"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <!--Left box (Solved)-->
    </LinearLayout>

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="16dp">
        <!--Right box (Level with progressbar)-->
    </RelativeLayout>
</LinearLayout>

答案 1 :(得分:1)

您可以将两个布局放在另一个水平方向的LinearLayout中。