CardView中心的Fab按钮

时间:2015-12-13 18:03:45

标签: android xml android-layout

我想为CardView创建一个类似于下图的布局,问题是我不知道将FAB放在我的布局中,我尝试使用{{ 1}}但不是“重叠”LinearLayout,或者进入或退出,我需要一些建议

enter image description here

这是我尝试过的(仅举例)

CardView

1 个答案:

答案 0 :(得分:1)

在这种情况下,FAB需要位于CardView之外。在Frame布局中包装CardView。

<FrameLayout>
<android.support.v7.widget.CardView>
     // put content of card here
</android.support.v7.widget.CardView>
<Fab />
<FrameLayout>