でframeLayoutはandroid:id="@+id/linear_adview"
とのLinearLayoutの直接の兄弟ではなく、あなたがandroid:layout_below="@id/linear_adview"
を使用できない理由ですその中に。実際に使用すると、1つのビューにRelativeLayoutとでframeLayoutをマージすることができますの.xmlファイルを共有してください
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/sticker_recycler_view"
android:layout_below="@id/linear_adview">
<FrameLayout
android:id="@+id/sticker_framelayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/linear_adview">
(...)
</FrameLayout>
<FrameLayout
android:id="@+id/sticker_framelayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/sticker_recycler_view"
android:layout_below="@id/linear_adview">
(...)
</FrameLayout>
から –
あなたが「削除する必要があなたのxmlレイアウトのすべての – nhoxbypass
ファーストを提供してください+ 」から android:layout_above = "@ + id/linear_adview" To android:layout_above = "@ id/linear_adview" –