2014-02-27 103 views
-1

嗨之間的內容我有這樣的Android ViewPager,標籤和碎片

<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嚮導,其中工程罰款main_activity.xml。

但現在我想在選項卡和內容(片段)之間添加一個應該始終可見的進度條。這可能嗎?

回答

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的現在顯示的標籤和碎片

0

您必須在活動xml中的viewpager上方添加進度條。

+0

的main_activity.xml間是我的MainActivity的xml文件,我不知道在什麼地方那裏有 – wutzebaer

+1

我明白了。那麼,我認爲你必須修改XML。例如,根佈局可以是垂直方向的線性佈局,其中的第一個視圖可以是進度條,第二個視圖是傳呼機,您可以通過其ID在您的活動中找到它。 – user3057944

+0

是的= =)謝謝 – wutzebaer