summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2014-08-14 17:43:04 -0700
committerAndrew Lee <anwlee@google.com>2014-08-15 17:26:17 -0700
commitf43b32f1b227c043bc7d7af0d66dfc0c9aa5a2e8 (patch)
tree8ec3e49835c6ba88bdcefee8b5d753a97f4fdd23
parente4ea104a18417115f35983bd4872bfe22a66bdfd (diff)
Tweak FAB tints and positioning.
+ Change FAB tint so that it's not 100% opacity. + Change dialpad touch tints to new theme color. - Don't translate FAB downwards when opening dialpad. Bug: 16399233 Change-Id: I7d5e0015e0d7d436ce3e2780f3048dfb792d13c0
-rw-r--r--res/drawable/floating_action_button.xml2
-rw-r--r--res/values/colors.xml4
-rw-r--r--src/com/android/dialer/DialtactsActivity.java11
3 files changed, 4 insertions, 13 deletions
diff --git a/res/drawable/floating_action_button.xml b/res/drawable/floating_action_button.xml
index 347e9d490..cbbfb8542 100644
--- a/res/drawable/floating_action_button.xml
+++ b/res/drawable/floating_action_button.xml
@@ -16,6 +16,6 @@
-->
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
- android:color="@color/dialer_accent_color">
+ android:color="@color/floating_action_button_touch_tint">
<item android:drawable="@drawable/fab_blue" />
</ripple>
diff --git a/res/values/colors.xml b/res/values/colors.xml
index 448d1e6c1..a3fd3f923 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -19,7 +19,6 @@
<color name="dialtacts_primary_text_color">#333</color>
<!-- Secondary text color in the Dialer -->
<color name="dialtacts_secondary_text_color">#737373</color>
- <color name="dialer_accent_color">#eeff41</color>
<color name="dialer_red_highlight_color">#ff1744</color>
<color name="dialer_green_highlight_color">#00c853</color>
@@ -100,7 +99,8 @@
<!-- Color for icons in the actionbar -->
<color name="actionbar_icon_color">#ffffff</color>
- <color name="dialer_dialpad_touch_tint">#331dc7db</color>
+ <color name="dialer_dialpad_touch_tint">#330288d1</color>
+ <color name="floating_action_button_touch_tint">#80ffffff</color>
</resources>
diff --git a/src/com/android/dialer/DialtactsActivity.java b/src/com/android/dialer/DialtactsActivity.java
index 12c52da9c..e5e708bc5 100644
--- a/src/com/android/dialer/DialtactsActivity.java
+++ b/src/com/android/dialer/DialtactsActivity.java
@@ -230,10 +230,6 @@ public class DialtactsActivity extends TransactionSafeActivity implements View.O
private String mActionMenuDialpadButtonStr;
private ImageButton mFloatingActionButton;
private FloatingActionButtonController mFloatingActionButtonController;
- /**
- * Additional offset for FAB to be lowered when dialpad is open.
- */
- private int mFloatingActionButtonDialpadMarginBottomOffset;
private int mActionBarHeight;
@@ -393,8 +389,6 @@ public class DialtactsActivity extends TransactionSafeActivity implements View.O
mFloatingActionButton.setOnTouchListener(this);
mFloatingActionButtonController = new FloatingActionButtonController(this,
floatingActionButtonContainer);
- mFloatingActionButtonDialpadMarginBottomOffset = resources.getDimensionPixelOffset(
- R.dimen.floating_action_button_dialpad_margin_bottom_offset);
ImageButton optionsMenuButton =
(ImageButton) searchEditTextLayout.findViewById(R.id.dialtacts_options_menu_button);
@@ -1207,9 +1201,6 @@ public class DialtactsActivity extends TransactionSafeActivity implements View.O
align = FloatingActionButtonController.ALIGN_END;
}
}
- mFloatingActionButtonController.align(align,
- 0 /* offsetX */,
- mIsDialpadShown ? mFloatingActionButtonDialpadMarginBottomOffset : 0 /* offsetY */,
- animate);
+ mFloatingActionButtonController.align(align, 0 /* offsetX */, 0 /* offsetY */, animate);
}
}