Make FAB colors themeable

This commit is contained in:
Thialfihar 2015-06-26 11:33:53 +02:00
parent fe9c802bbb
commit 0f6acbd030
6 changed files with 15 additions and 10 deletions

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/black_semi_transparent"/>
<solid android:color="?attr/colorFabBackground"/>
<padding
android:left="16dp"
android:top="4dp"
@ -8,4 +8,4 @@
android:bottom="4dp"/>
<corners
android:radius="2dp"/>
</shape>
</shape>

View file

@ -61,8 +61,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
fab:fab_icon="@drawable/ic_qrcode_white_24dp"
fab:fab_colorNormal="?attr/colorPrimary"
fab:fab_colorPressed="?attr/colorPrimaryDark"
fab:fab_colorNormal="?attr/colorFab"
fab:fab_colorPressed="?attr/colorFabPressed"
fab:fab_title="Scan QR Code"
fab:fab_size="mini" />
@ -71,8 +71,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
fab:fab_icon="@drawable/ic_cloud_search_24dp"
fab:fab_colorNormal="?attr/colorPrimary"
fab:fab_colorPressed="?attr/colorPrimaryDark"
fab:fab_colorNormal="?attr/colorFab"
fab:fab_colorPressed="?attr/colorFabPressed"
fab:fab_title="Search Cloud"
fab:fab_size="mini" />
@ -81,8 +81,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
fab:fab_icon="@drawable/ic_folder_white_24dp"
fab:fab_colorNormal="?attr/colorPrimary"
fab:fab_colorPressed="?attr/colorPrimaryDark"
fab:fab_colorNormal="?attr/colorFab"
fab:fab_colorPressed="?attr/colorFabPressed"
fab:fab_title="Import from File"
fab:fab_size="mini" />

View file

@ -3,6 +3,8 @@
<declare-styleable name="CustomTheme">
<attr name="colorFab" format="color" />
<attr name="colorFabPressed" format="color" />
<attr name="colorFabBackground" format="color" />
<attr name="colorFabText" format="color" />
<attr name="colorEmphasis" format="color" />
<attr name="colorHeaderText" format="color" />
<attr name="colorTertiaryText" format="color" />

View file

@ -13,7 +13,6 @@
<!-- floating action buttons -->
<color name="black_semi_transparent">#B2000000</color>
<color name="black">#000000</color>
<color name="white">#fafafa</color>

View file

@ -23,7 +23,7 @@
<style name="FabMenuStyle">
<item name="android:background">@drawable/fab_label_background</item>
<item name="android:textColor">@color/white</item>
<item name="android:textColor">?attr/colorFabText</item>
</style>
<!-- This style is for use with our drag and drop RecyclerView since ItemDecoration did not

View file

@ -8,6 +8,8 @@
<item name="colorFab">#2196f3</item>
<item name="colorFabPressed">#1976d2</item>
<item name="colorFabBackground">#b2000000</item>
<item name="colorFabText">#fafafa</item>
<item name="colorEmphasis">#2196f3</item>
<item name="colorHeaderText">#212121</item>
@ -29,6 +31,8 @@
<item name="colorFab">#2196f3</item>
<item name="colorFabPressed">#1976d2</item>
<item name="colorFabBackground">#b2000000</item>
<item name="colorFabText">#fafafa</item>
<item name="colorEmphasis">#2196f3</item>
<item name="colorHeaderText">#a0a0a0</item>