Android操作选项卡侦听器使我的布局隐藏

时间:2015-03-10 12:40:29

标签: android tabs android-actionbar

在我的主要活动中包含actionbar tablistener,当选项卡被滑动或制表符然后我根据选择加载片段时,现在片段listview隐藏在主活动操作栏下面, 参考下面的屏幕截图 enter image description here

我的XML代码:

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

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:scaleType="fitXY"
        android:src="@drawable/building" />

    <RelativeLayout
        android:id="@+id/headertext"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:layout_below="@+id/imageView1"
        android:background="@drawable/item_background" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="Sample list view"
            android:textColor="@android:color/white"
            android:textSize="20sp" />
    </RelativeLayout>

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

Android操作标签监听器使我的布局隐藏 final ActionBar actionBar = getActionBar(); actionBar.setNavigationMode(actionBar.NAVIGATION_MODE_STANDARD);