为什么列表上方有空格?

时间:2016-12-21 11:49:30

标签: android xml

这是我的问题:image1

为什么列表上方有空格?

这是我的xml:

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
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"
    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"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

    <ImageView
        android:id="@+id/myImageView"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:scaleType="centerCrop" />

    <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"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:layout_height="459dp" />
</android.support.design.widget.CoordinatorLayout>

我认为是因为androidstudio向我显示了&#34; androhouse2.0&#34; 工具栏,如何将其删除?看这张图: image2

另一个问题,我怎样才能改变&#34; notific bar&#34 ;?的颜色? (第一张照片是白色,我需要蓝色)

thnks

2 个答案:

答案 0 :(得分:1)

要更改notificationBar颜色,请使用

this.requestWindowFeature(Window.FEATURE_ACTION_BAR);
        Window window = activity.getWindow();

window.setStatusBarColor(this.getResources().getColor(R.color.notificationBarColor));

答案 1 :(得分:0)

请执行match_parent viewpager hight

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