Is it possible to show the label (for example
) of a button of a floating action without using a third-party library? I am using the Android support library for my factory, and I want to know if I can show a shortcut with it.
My code for FAB is as follows:
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_visitdetail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="16dp"
android:src="@drawable/right_arrow"/>
I do not use any menu only FAB.
user2253883
source
share