0
これまで私はこれまでに起こったことがありません。基本的に私はナビゲーション・ドロワー・レイアウトを持っています。フラグメントを表示すると、すべての側に約10dpのスペースが残っているため、基本的にはそれを少し縮小します。ナビゲーションに余白を追加します。
app_bar_main.xml:
<RelativeLayout 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="com.app.r6s.MainActivity"
android:background="#464646">
<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.AppBarLayout>
<include
android:layout_width="match_parent"
android:layout_height="match_parent"
layout="@layout/content_main"
android:layout_alignParentStart="true"
android:layout_marginTop="55dp" />
content_main.xml:私がしようとしている
<RelativeLayout 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/show_fragments"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.app.r6s.MainActivity"
tools:showIn="@layout/app_bar_main">
断片ショーへ:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.TabLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/tab_layout">
</android.support.design.widget.TabLayout>
<view
android:layout_width="wrap_content"
android:layout_height="wrap_content"
class="android.support.v4.view.ViewPager"
android:id="@+id/viewpager"
android:layout_marginTop="48dp"/>
およびフラグメントを置き換えるコード:あなたのcontent_main.xmlでパディングについて
MyFragment fragment = new MyFragment();
FragmentManager fm = getSupportFragmentManager();
fm.beginTransaction().replace(R.id.show_fragments, fragment).commit();
これは実際に問題を修正しました。 – squash
あなたの答えが小さければ、plzはコメントの使用を検討します。 – AnixPasBesoin
@AnixPasBesoin思い出してくれてありがとう – FarshidABZ