Android ViewPager,标签和片段之间的内容

时间:2014-02-27 20:38:22

标签: android tabs

我有一个像这样的main_activity.xml

<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" 

    />

我已经使用eclipse向导创建了一个tab-application,工作正常。

但是现在我想在标签和内容(片段)之间添加一个进度条,它应该始终可见。这可能吗?

2 个答案:

答案 0 :(得分:0)

您必须在活动xml中添加viewpager上方的进度条。

答案 1 :(得分:0)

我明白了,我的解决方案:

<LinearLayout 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:orientation="vertical"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="huhu" />

    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>

TextView现在显示在标签和片段之间