Created
November 2, 2014 07:46
-
-
Save lpellegr/cf9a62ee4b2ad2726680 to your computer and use it in GitHub Desktop.
This file contains 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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:fab="http://schemas.android.com/apk/res-auto" | |
android:background="@color/background" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent"> | |
<com.getbase.floatingactionbutton.AddFloatingActionButton | |
android:id="@+id/normal_plus" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_alignParentBottom="true" | |
fab:fab_plusIconColor="@color/half_black" | |
fab:fab_colorNormal="@color/white" | |
fab:fab_colorPressed="@color/white_pressed" | |
android:layout_alignParentLeft="true" | |
android:layout_alignParentStart="true" | |
android:layout_marginBottom="16dp" | |
android:layout_marginLeft="16dp" | |
android:layout_marginStart="16dp"/> | |
<com.getbase.floatingactionbutton.AddFloatingActionButton | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_above="@id/normal_plus" | |
fab:fab_plusIconColor="@color/half_black" | |
fab:fab_colorNormal="@color/white" | |
fab:fab_colorPressed="@color/white_pressed" | |
fab:fab_size="mini" | |
android:layout_alignParentLeft="true" | |
android:layout_alignParentStart="true" | |
android:layout_marginBottom="16dp" | |
android:layout_marginLeft="24dp" | |
android:layout_marginStart="24dp"/> | |
<com.getbase.floatingactionbutton.FloatingActionsMenu | |
android:id="@+id/multiple_actions" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_alignParentBottom="true" | |
android:layout_alignParentRight="true" | |
android:layout_alignParentEnd="true" | |
fab:fab_addButtonColorNormal="@color/white" | |
fab:fab_addButtonColorPressed="@color/white_pressed" | |
fab:fab_addButtonPlusIconColor="@color/half_black" | |
android:layout_marginBottom="16dp" | |
android:layout_marginRight="16dp" | |
android:layout_marginEnd="16dp"> | |
<com.getbase.floatingactionbutton.FloatingActionButton | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
fab:fab_colorNormal="@color/white" | |
fab:fab_colorPressed="@color/white_pressed"/> | |
<com.getbase.floatingactionbutton.FloatingActionButton | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
fab:fab_colorNormal="@color/white" | |
fab:fab_colorPressed="@color/white_pressed"/> | |
</com.getbase.floatingactionbutton.FloatingActionsMenu> | |
<com.getbase.floatingactionbutton.FloatingActionsMenu | |
android:id="@+id/multiple_actions_down" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_alignParentRight="true" | |
android:layout_alignParentEnd="true" | |
android:layout_alignParentTop="true" | |
fab:fab_addButtonColorNormal="@color/white" | |
fab:fab_addButtonColorPressed="@color/white_pressed" | |
fab:fab_addButtonPlusIconColor="@color/half_black" | |
fab:fab_expandDirection="down" | |
android:layout_marginTop="16dp" | |
android:layout_marginRight="16dp" | |
android:layout_marginEnd="16dp"> | |
<com.getbase.floatingactionbutton.FloatingActionButton | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
fab:fab_colorNormal="@color/white" | |
fab:fab_colorPressed="@color/white_pressed"/> | |
<com.getbase.floatingactionbutton.FloatingActionButton | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
fab:fab_colorNormal="@color/white" | |
fab:fab_colorPressed="@color/white_pressed"/> | |
</com.getbase.floatingactionbutton.FloatingActionsMenu> | |
<com.getbase.floatingactionbutton.FloatingActionsMenu | |
android:id="@+id/multiple_actions_left" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_toLeftOf="@+id/multiple_actions_down" | |
android:layout_toStartOf="@+id/multiple_actions_down" | |
android:layout_alignParentTop="true" | |
fab:fab_addButtonColorNormal="@color/white" | |
fab:fab_addButtonColorPressed="@color/white_pressed" | |
fab:fab_addButtonPlusIconColor="@color/half_black" | |
fab:fab_expandDirection="left" | |
android:layout_marginTop="16dp" | |
android:layout_marginRight="16dp" | |
android:layout_marginEnd="16dp"> | |
<com.getbase.floatingactionbutton.FloatingActionButton | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
fab:fab_colorNormal="@color/white" | |
fab:fab_colorPressed="@color/white_pressed"/> | |
<com.getbase.floatingactionbutton.FloatingActionButton | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
fab:fab_colorNormal="@color/white" | |
fab:fab_colorPressed="@color/white_pressed"/> | |
</com.getbase.floatingactionbutton.FloatingActionsMenu> | |
<com.getbase.floatingactionbutton.FloatingActionButton | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
fab:fab_icon="@drawable/ic_fab_star" | |
fab:fab_colorNormal="#99fe0038" | |
fab:fab_colorPressed="@color/pink_pressed" | |
android:layout_alignParentBottom="true" | |
android:layout_marginBottom="16dp"/> | |
</RelativeLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment