这是我在第一个标签中启动的第一个片段。这个片段有一个按钮点击,我应该用一个新片段启动这个片段。但是当我这样做时,新片段会被启动,但顶部有一个空间。 见下图:
事实上,整个被替换的片段已经滑下并走出了下面的屏幕。 那些假设我已经添加了marginTop或paddingTop的人,告知我没有添加任何类似的内容。事实上,如果我用其他片段替换新片段,黑色空间仍然在顶部。所以它与我取代它的片段无关。 请帮忙。
main_activity.xml
<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:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.moodoff.AllTabs">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabIndicatorColor="#FFC300"
app:tabIndicatorHeight="5dp"
android:background="#C70039"
app:tabGravity="fill"
/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="0dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
first_fragment.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/allmoods"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:orientation="vertical"
android:background="@color/black"
tools:context="com.moodoff.Moods">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:id="@+id/firstRowOfMoods"
android:background="@color/black"
android:layout_weight="1"
android:layout_marginTop="5dp"
>
<!--- SOME BUTTONS --->
</LinearLayout>
</LinearLayout>