android – How do I implement a Button in Material Design?

Question: Question:

How should I implement the Floating action button and Raised button as described in the Material Design Guidelines ?

I think it would be nice to put these two in the Flat button …

style="?android:borderlessButtonStyle"
android:textStyle="bold"

Answer: Answer:

Raised button should set the text and background color below.

style parent="android:Widget.Material.Button"

The library for Floating action button is on github.
https://github.com/shamanland/floating-action-button

Reference: http://qiita.com/pside/items/b99a978b7b0fdbd52468
(This is an explanation of the ripple effect, but it explains in detail how to make a button.

Scroll to Top