Last active
April 10, 2018 04:47
-
-
Save mmazzarolo/a5d780807fdfa93ee7ed to your computer and use it in GitHub Desktop.
Floating Action Menu like Inbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!-- | |
drawable/fab_label_background.xml | |
This is the background of the fab labels. | |
It is similiar to a CardView with rounded corners. | |
The output of my style is the following: | |
https://raw.githubusercontent.com/mmazzarolo/easy-bookmarks/master/extras/1.gif | |
--> | |
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item> | |
<shape | |
android:dither="true" | |
android:shape="rectangle"> | |
<corners android:radius="3dp"/> | |
<solid android:color="@color/#BDBDBD"/> | |
</shape> | |
</item> | |
<item android:bottom="1dp"> | |
<shape | |
android:dither="true" | |
android:shape="rectangle"> | |
<corners android:radius="3dp"/> | |
<solid android:color="@android:color/white"/> | |
<padding | |
android:bottom="6dp" | |
android:left="8dp" | |
android:right="8dp" | |
android:top="4dp"/> | |
<stroke android:color="#BDBDBD"/> | |
</shape> | |
</item> | |
</layer-list> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
values/styles.xml | |
This is the style for the fab labels. | |
The output of my style is the following: | |
https://raw.githubusercontent.com/mmazzarolo/easy-bookmarks/master/extras/1.gif | |
--> | |
<style name="fab_menu_labels_style"> | |
<item name="android:background">@drawable/fab_label_background</item> | |
<item name="android:textColor">#757575</item> | |
<item name="android:textStyle">bold</item> | |
<item name="android:layout_marginRight">24dp</item> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment