在片段蚀的浮动动作按钮

时间:2016-05-19 04:24:05

标签: android eclipse android-fragments floating-action-button

我试图在eclipse中实现FAB。我找到了这段代码here

但是以下代码在片段onCreateView方法中不起作用(我测试了它并且它在活动的onCreate方法中起作用)。

FloatingActionButton fabButton = new FloatingActionButton.Builder(this)
        .withDrawable(getResources().getDrawable(R.drawable.ic_action_add))
        .withButtonColor(Color.WHITE)
        .withGravity(Gravity.BOTTOM | Gravity.RIGHT)
        .withMargins(0, 0, 16, 16)
        .create();

如何实现片段中的工作。请帮忙。

0 个答案:

没有答案