私は単一の断片活性を持っています。フラグメントにはコーディネーターのレイアウトがあり、ファブの直接の子としてのfabと他のビューがあります。スタートアップ時の断片のFab位置が正しくない
活動レイアウト
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar_layout" />
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
フラグメントレイアウト
<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">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.github.aakira.expandablelayout.ExpandableLinearLayout
android:id="@+id/statistic_expand_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/toolbar"
android:background="@color/colorPrimary"
android:orientation="vertical"
app:ael_duration="150"
app:ael_interpolator="accelerateDecelerate">
<com.github.mikephil.charting.charts.BarChart
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/overall_statistic_bar_chart"
android:layout_width="match_parent"
android:layout_height="@dimen/statistic_small"/>
<TextView
style="@style/SmallTextTheme"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/spacing_small"
android:gravity="center"
android:text="@string/overall_statistic"
android:textColor="@color/colorTextPrimary"/>
</com.github.aakira.expandablelayout.ExpandableLinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/statistic_expand_layout"
android:scrollbars="vertical"/>
<View
android:layout_width="match_parent"
android:layout_height="@dimen/spacing_tiny"
android:layout_below="@id/statistic_expand_layout"
android:background="@drawable/shadow_updown"/>
</RelativeLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/activity_main_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/spacing_standard"
android:src="@drawable/ic_add"
app:layout_anchor="@id/recycler_view"
app:layout_anchorGravity="bottom|end"/>
</android.support.design.widget.CoordinatorLayout>
私はこのフラグメント工場の位置での活動を開始すると
が、ときに私はいずれかのボタンやビューを押し間違っていますファブはrの正しい位置に行きますight bottom corner。このレイアウトをアクティビティに直接置くと、常に正しい位置に配置されます。誰でも問題の原因がわかりましたか?
お返事ありがとうございますが、質問の説明に間違いがありました。私はfragment_containerの場所で**フラグメント**のレイアウトをアクティビティ**に直接入れても、**私はアクティビティレイアウト**としてフラグメントのレイアウトを使用しています。展開時に、展開可能なレイアウトでRecyclerViewを配置するには、このRelativeLayoutが必要です。 –
** Activity Layout **で 'CoordinatorLayout'を使用して、' FloatingActionButton'を正しい場所に置くことができないのはなぜですか?私は 'Toolbar'を' LinearLayout'の中に入れ、 'Toolbar'と' AppBarLayout'を使わずに 'CoordinatorLayout'を使っている部分について、なぜ考えているのですか?このレイアウトデザインが正しいとは思わない! – Mohsen
あなたの権利では、コーディネーターのレイアウトでアクティビティー・レイアウトを書き直しました。ありがとう:) –