Posts

Showing posts with the label Material Design

Floating Action Menu In Android

Image
I am going to explain about the Floating Action Menu in   Android Material Design   . FAM (Floating Action Menu) is the most interesting component in Material Design . See the bellow image , how the  FAM looks like in Android. Lets start for create Floating Action Menu in Android . Follow the bellow steps . Step 1:   Create Project            a) Open Android Studio           b) Go to File >New> New Project  > Project Name  > Next > Next > Next > Finish  Step 2:   Add Design Library    Open build.gradle > add this line com.oguzdev:CircularFloatingActionMenu:1.0.2     > Sync the gradle file . Like this  dependencies {     compile fileTree(dir: 'libs', include: ['*.jar'])      compile 'com.android.support:appcompat-v7:23.4.0'      compile 'c...