我有這樣的層次:集裝箱浮動操作按鈕+小吃吧
<CoordinatorLayout>
<Framelayout/>
<NestedScrollView>
<LinearLayout>
<FrameLayout/>
</LinearLayout>
</NestedScrollView>
<FloatingActionButton>
</CoordinatorLayout>
我叫我的根視圖小吃吧。 有了這個佈局,我的小吃店完美地按照我的想法工作。
我該如何實現,我可以加載FloatingActionButton
動態並將其包裝到容器中?
我試圖把它換成另一個CoordinatorLayout
。因此,佈局是這樣的:
<CoordinatorLayout>
<Framelayout/>
<NestedScrollView>
<LinearLayout>
<FrameLayout/>
</LinearLayout>
</NestedScrollView>
<CoordinatorLayout> <!-- This is the added container -->
<FloatingActionButton> <!-- I would like to load it dynamically from another layout file -->
<CoordinatorLayout>
</CoordinatorLayout>
這樣做的問題是,當我打電話給我的小吃吧它重疊FloatingActionButton
。
我也試過用LinearLayout或RelativeLayout代替,但是FloatingActionButton
未被正確放置。