为什么tablayout向上滚动?

时间:2017-05-01 20:13:24

标签: android xml android-tablayout

我正在尝试使用2 tablayout创建应用我遵循一些步骤并且每件事情都运行良好但是Tablayout我遇到了这个问题,显示Toolbartablayout之间有很大的空间<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:ads="http://schemas.android.com/apk/res-auto" android:id="@+id/drawer" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" android:background="#ffffff"> <android.support.design.widget.CoordinatorLayout android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="wrap_content" app:layout_scrollFlags="scroll|snap" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="?attr/colorPrimary" app:layout_scrollFlags="scroll|enterAlways|snap" android:elevation="5dp" app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> <android.support.design.widget.TabLayout android:id="@+id/tabs" android:layout_below="@id/toolbar" android:layout_width="match_parent" android:layout_height="wrap_content" app:tabMaxWidth="0dp" app:layout_scrollFlags="snap|enterAlways" app:tabGravity="fill" app:tabMode="fixed" app:tabIndicatorHeight="4dp" android:elevation="10dp"/> </android.support.design.widget.AppBarLayout> <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" android:background="#FFFFFF" app:layout_scrollFlags="scroll|enterAlways" /> </android.support.design.widget.CoordinatorLayout> 喜欢这张照片,当我向上滚动时,空间消失,我想删除此空间

enter image description here

当我向上滚动时:

enter image description here

<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.xml:

<!DOCTYPE html>
<html>
<head>
     <title>MicroUrb</title>
     <link rel="stylesheet" href="css/stack.css">
</head>

body {
    background:url('../img/yvette.jpg');
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #000000;
    -webkit-font-smoothing: antialiased;
   text-rendering: optimizelegibility;
 }

3 个答案:

答案 0 :(得分:0)

在您的情况下,额外的空格是上面标签布局上xml中的工具栏,您正在使用主题

"Theme.AppCompat.Light.DarkActionBar"

这会导致两个动作栏,如果你不使用工具栏只是删除它

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:background="#ffffff">
<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_scrollFlags="scroll|snap"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_below="@id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabMaxWidth="0dp"
            app:layout_scrollFlags="snap|enterAlways"
            app:tabGravity="fill"
            app:tabMode="fixed"
            app:tabIndicatorHeight="4dp"
            android:elevation="10dp"/>
    </android.support.design.widget.AppBarLayout>
    <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"
        android:background="#FFFFFF"
        app:layout_scrollFlags="scroll|enterAlways" />
</android.support.design.widget.CoordinatorLayout>

这将是删除工具栏后的最终xml, 否则你想要工具栏,然后设置没有动作栏的那些

答案 1 :(得分:0)

问题:我没有看到您的清单文件,但看起来您有一个默认Toolbar来自您的Theme,而您自己设置了一个。{1}}。要解决此问题,您可以删除默认工具栏并使用您添加的工具栏。

要解决此问题,请按以下步骤操作。

第1步:将NoActionBar样式添加到Style.xml

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

第2步:将AppTheme.NoActionBar设置为Manifest.xml中的Activity

<activity
    android:name="YourActivity"
    android:theme="@style/AppTheme.NoActionBar">
</activity>

现在您的活动将没有系统工具栏。您可以根据需要添加自己的Toolbar自定义。

第3步:将您的布局Toolbar设置为Toolbar内的默认Activity

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

现在您可以使用此Toolbar

setTitle("Some Title");

答案 2 :(得分:0)

多余的空间是您在appbarlayout中编写的第二个工具栏。默认情况下,第一个工具栏是工具栏。

您可以通过在style.xml中编写以下代码来删除工具栏上的多余空间

    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

代替

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

您可以按如下所示修改appbarlayout代码。您刚刚从appbarlayout中删除了工具栏。

    <android.support.design.widget.AppBarLayout
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               app:layout_scrollFlags="scroll|snap"
               android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    <android.support.design.widget.TabLayout
               android:id="@+id/tabs"
               android:layout_below="@id/toolbar"
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               app:tabMaxWidth="0dp"
               app:layout_scrollFlags="snap|enterAlways"
               app:tabGravity="fill"
               app:tabMode="fixed"
               app:tabIndicatorHeight="4dp"
               android:elevation="10dp"/> 
   </android.support.design.widget.AppBarLayout>