Android 将选项卡置于其他布局之上

Android 将选项卡置于其他布局之上,android,xml,layout,Android,Xml,Layout,我正在尝试使用列表视图来显示来自网络的数据。 数据正在从源正确加载。但问题是,如果数据加载到一个选项卡的ListView,其他选项卡就会消失,我无法再访问它们。我附上了屏幕截图,让它更清晰 下面是ListView的XML代码 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layo

我正在尝试使用
列表视图来显示来自网络的数据。
数据正在从源正确加载。但问题是,如果数据加载到一个选项卡的
ListView
,其他选项卡就会消失,我无法再访问它们。我附上了屏幕截图,让它更清晰

下面是ListView的XML代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

<ListView
    android:layout_above="@+id/tabView"
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:divider="@null" />
 </LinearLayout>

这是mainfeedXML代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/feed_bg"
android:orientation="vertical" >

  <LinearLayout
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"

     android:layout_marginLeft="@dimen/feed_item_margin"
     android:layout_marginRight="@dimen/feed_item_margin"
     android:layout_marginTop="@dimen/feed_item_margin"
     android:background="@drawable/bg_parent_rounded_corner"
     android:orientation="vertical"
     android:paddingBottom="@dimen/feed_item_padding_top_bottom"
     android:paddingTop="@dimen/feed_item_padding_top_bottom" >

     <LinearLayout
         android:layout_width="fill_parent"
         android:layout_height="wrap_content"
         android:orientation="horizontal"
         android:paddingLeft="@dimen/feed_item_padding_left_right"
         android:paddingRight="@dimen/feed_item_padding_left_right" >

         <com.android.volley.toolbox.NetworkImageView
             android:id="@+id/profilePic"
             android:layout_width="@dimen/feed_item_profile_pic"
             android:layout_height="@dimen/feed_item_profile_pic"
             android:scaleType="fitCenter" >
         </com.android.volley.toolbox.NetworkImageView>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:paddingLeft="@dimen/feed_item_profile_info_padd" >

            <TextView
                android:id="@+id/name"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:textSize="@dimen/feed_item_profile_name"
                android:textStyle="bold" />

            <TextView
                android:id="@+id/timestamp"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:textColor="@color/timestamp"
                android:textSize="@dimen/feed_item_timestamp" />
        </LinearLayout>
    </LinearLayout>

    <TextView
        android:id="@+id/txtStatusMsg"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="5dp"
        android:paddingLeft="@dimen/feed_item_status_pad_left_right"
        android:paddingRight="@dimen/feed_item_status_pad_left_right"
        android:paddingTop="@dimen/feed_item_status_pad_top" />

    <TextView
        android:id="@+id/txtUrl"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:linksClickable="true"
        android:paddingBottom="10dp"
        android:paddingLeft="@dimen/feed_item_status_pad_left_right"
        android:paddingRight="@dimen/feed_item_status_pad_left_right"
        android:textColorLink="@color/link" />

    <com.example.hissamyousaf.socialoid.FeedImageView
        android:id="@+id/feedImage1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"
        android:scaleType="fitXY"
        android:visibility="visible" />
</LinearLayout>

TabWidget

Tabwidget

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_alignParentBottom="true"
android:layout_height="fill_parent">
<RelativeLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"/>
    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>
</RelativeLayout> 
</TabHost>


像这样更改框架布局

<FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@android:id/tabs" />


共享代码。仅仅是屏幕截图并不能帮助您准确地将其添加到您的listView布局android:layout_over=“@+id/tabView”@AnswerDroid请检查代码。