android原生支持浮动动作按钮的项目吗?

时间:2016-08-08 11:51:13

标签: android floating-action-button

我想创建一个浮动动作按钮,其中包含图片等项目。 &安培;还在项目旁边添加一些文字。图片来自 google website 。但我找到了一些解决问题的库。像this& this我对Android原生设计库非常好奇。任何人都知道如何使用本机库?

图片:

enter image description here

更新:我编写的代码

 FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
    fab.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
           // my actions is here 
        }
    });

Xml如下

    <android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="@dimen/fab_margin"
    android:src="@android:drawable/ic_dialog_email"
    app:layout_behavior="com.alhikmah.weather360.utility.ScrollAwareFABBehavior" />

1 个答案:

答案 0 :(得分:0)

完成搜索后,我决定使用FloatingActionButton库来达到我需要的效果。我没有找到任何本地库来执行此操作。