0

我将把它切换为使用 Table 而不是 ListView,但我担心这些项目不是相对的,因为它们应该被赋予提供的 XML。

是否有关于在 Linear 内部的 RelativeLayout 是否会导致问题?

在此处输入图像描述

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:orientation="vertical"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent">

    <ViewSwitcher
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/dashboardViewSwitcher" android:layout_gravity="center">
        <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">
            <include
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    layout="@layout/loading" />
        </RelativeLayout>
        <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">

            <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/dashboardActivity_Header"
                    android:id="@+id/dashboardActivityHeader"/>
            <ListView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:id="@+id/dashboardActivityList"/>

            <TextView android:layout_width="wrap_content"
                      android:layout_height="wrap_content"
                      android:text="@string/dashboardNews_Header"
                      android:id="@+id/dasboardNewsHeader"/>
            <ListView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:id="@+id/dashboardNewsList"/>
        </RelativeLayout>
    </ViewSwitcher>
</LinearLayout>
4

1 回答 1

4

您应该使用 , 等声明组件在布局中的相对关系。android:layout_belowandroid:layout_toLeftOf

例如:

    <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

        <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/dashboardActivity_Header"
                android:id="@+id/dashboardActivityHeader"/>
        <ListView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/dashboardActivityHeader"
                android:id="@+id/dashboardActivityList"/>

       </RelativeLayout>
于 2013-01-15T22:06:44.087 回答