我试图在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();
如何实现片段中的工作。请帮忙。