停止在ViewPager中通过ActionBar的片段

时间:2015-11-29 12:00:50

标签: java android android-fragments

正如您在下图中所看到的,“更新片段”TextView正在ActionBar上方编写。我试图让它成为这个文本位于TabBar下面,你期望它。

enter image description here

主要活动布局是CoordinatorLayout,包含典型的AppBarLayout,然后是ViewPager。

ViewPager正在填满整个屏幕(据我所知),但是如何更改布局以使片段位于选项卡下并从那里填充屏幕的其余部分?

activity_main.xml中:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context=".MainActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabMode="fixed"
            app:tabGravity="fill" />
    </android.support.design.widget.AppBarLayout>

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

</android.support.design.widget.CoordinatorLayout>

fragment_updates.xml:

<RelativeLayout 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"
    tools:context=".UpdatesFragment">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Updates fragment" />
</RelativeLayout >

的AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="uk.joel.myapp">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="Stack"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <meta-data android:name="com.google.android.geo.API_KEY" android:value="key" />
    </application>

</manifest>

Styles.xml:

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

    <style name="AppTheme.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>

    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

</resources>

3 个答案:

答案 0 :(得分:3)

因为您使用CoOrdinatorLayout: -

<android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

答案 1 :(得分:3)

我认为您在评论中正确识别了部分问题 - CoordinatorLayout继承自FrameLayout,因此您当前的布局文件只是告诉ViewPager填写整个屏幕并继续浏览其他内容(如照片中所示)。

修改:我已经意识到,自从发布以下建议后,引号中的内容与您的问题并不相关。只有在您想要创建折叠工具栏行为时才会这么做。

  

要解决此问题,并继续使用CoordinatorLayout,您需要   为您的内容分配行为,这只能在布局上进行   嵌套滚动(RecyclerViewNestedScrollView)。

     

因此,您可以尝试为每个人包装布局文件   ViewPager内的NestedScrollView内的片段。

此外,您可以尝试将app:layout_behavior="@string/appbar_scrolling_view_behavior"添加到ViewPager

答案 2 :(得分:-1)

尝试将layout_below AppBarLayout添加到ViewPager:

<android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="--some id of AppBarLayout--" />