diff options
author | Yorke Lee <yorkelee@google.com> | 2014-05-27 19:48:20 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-05-27 19:48:20 +0000 |
commit | f7992102026da23ae30ed507208225a822ea0fcf (patch) | |
tree | 730747d193edf262a745317c598b1202d89d8a15 | |
parent | 76c77478e99c18cd296f6f036d94923737362a06 (diff) | |
parent | 6c027d89718c2531be487f1033466c8a5debc894 (diff) |
Merge "Make actionbar back button white" into lmp-preview-dev
-rw-r--r-- | res/drawable-hdpi/ic_arrow_back_24dp.png | bin | 0 -> 234 bytes | |||
-rw-r--r-- | res/drawable-hdpi/ic_back_arrow.png | bin | 670 -> 0 bytes | |||
-rw-r--r-- | res/drawable-mdpi/ic_arrow_back_24dp.png | bin | 0 -> 213 bytes | |||
-rw-r--r-- | res/drawable-mdpi/ic_back_arrow.png | bin | 552 -> 0 bytes | |||
-rw-r--r-- | res/drawable-xhdpi/ic_arrow_back_24dp.png | bin | 0 -> 258 bytes | |||
-rw-r--r-- | res/drawable-xhdpi/ic_back_arrow.png | bin | 800 -> 0 bytes | |||
-rw-r--r-- | res/drawable-xxhdpi/ic_arrow_back_24dp.png | bin | 0 -> 302 bytes | |||
-rw-r--r-- | res/drawable-xxhdpi/ic_back_arrow.png | bin | 1496 -> 0 bytes | |||
-rw-r--r-- | res/drawable/ic_back_arrow.xml | 20 | ||||
-rw-r--r-- | res/values/styles.xml | 8 |
10 files changed, 22 insertions, 6 deletions
diff --git a/res/drawable-hdpi/ic_arrow_back_24dp.png b/res/drawable-hdpi/ic_arrow_back_24dp.png Binary files differnew file mode 100644 index 000000000..86cb89463 --- /dev/null +++ b/res/drawable-hdpi/ic_arrow_back_24dp.png diff --git a/res/drawable-hdpi/ic_back_arrow.png b/res/drawable-hdpi/ic_back_arrow.png Binary files differdeleted file mode 100644 index aad4f3659..000000000 --- a/res/drawable-hdpi/ic_back_arrow.png +++ /dev/null diff --git a/res/drawable-mdpi/ic_arrow_back_24dp.png b/res/drawable-mdpi/ic_arrow_back_24dp.png Binary files differnew file mode 100644 index 000000000..dc81cd1d4 --- /dev/null +++ b/res/drawable-mdpi/ic_arrow_back_24dp.png diff --git a/res/drawable-mdpi/ic_back_arrow.png b/res/drawable-mdpi/ic_back_arrow.png Binary files differdeleted file mode 100644 index 56eb887dd..000000000 --- a/res/drawable-mdpi/ic_back_arrow.png +++ /dev/null diff --git a/res/drawable-xhdpi/ic_arrow_back_24dp.png b/res/drawable-xhdpi/ic_arrow_back_24dp.png Binary files differnew file mode 100644 index 000000000..4f4fbaa2d --- /dev/null +++ b/res/drawable-xhdpi/ic_arrow_back_24dp.png diff --git a/res/drawable-xhdpi/ic_back_arrow.png b/res/drawable-xhdpi/ic_back_arrow.png Binary files differdeleted file mode 100644 index 9d46e3d2c..000000000 --- a/res/drawable-xhdpi/ic_back_arrow.png +++ /dev/null diff --git a/res/drawable-xxhdpi/ic_arrow_back_24dp.png b/res/drawable-xxhdpi/ic_arrow_back_24dp.png Binary files differnew file mode 100644 index 000000000..46e90f735 --- /dev/null +++ b/res/drawable-xxhdpi/ic_arrow_back_24dp.png diff --git a/res/drawable-xxhdpi/ic_back_arrow.png b/res/drawable-xxhdpi/ic_back_arrow.png Binary files differdeleted file mode 100644 index 66b6e351d..000000000 --- a/res/drawable-xxhdpi/ic_back_arrow.png +++ /dev/null diff --git a/res/drawable/ic_back_arrow.xml b/res/drawable/ic_back_arrow.xml new file mode 100644 index 000000000..68a875ded --- /dev/null +++ b/res/drawable/ic_back_arrow.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2014 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> +<bitmap xmlns:android="http://schemas.android.com/apk/res/android" + android:src="@drawable/ic_arrow_back_24dp" + android:autoMirrored="true" + android:tint="@color/actionbar_icon_color" />
\ No newline at end of file diff --git a/res/values/styles.xml b/res/values/styles.xml index b8dee23d3..e84f4b52d 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -22,14 +22,10 @@ <item name="android:windowActionBarOverlay">true</item> <item name="android:windowActionModeOverlay">true</item> <item name="android:actionBarStyle">@style/DialtactsActionBarStyle</item> - <!-- Style for the tabs (for the tabs) --> - <item name="android:actionBarTabStyle">@style/DialtactsActionBarTabStyle</item> - <!-- Style for the tab bar (for the divider between tabs) --> - <item name="android:actionBarTabBarStyle">@style/DialtactsActionBarTabBarStyle</item> - <!-- Style for the tab bar text (for text on tabs) --> - <item name="android:actionBarTabTextStyle">@style/DialtactsActionBarTabTextStyle</item> <!-- Style for the overflow button in the actionbar. --> <item name="android:actionOverflowButtonStyle">@style/DialtactsActionBarOverflow</item> + <!-- Drawable for the back button --> + <item name="android:homeAsUpIndicator">@drawable/ic_back_arrow</item> <item name="android:windowContentOverlay">@null</item> <!-- Searchbox Style --> <item name="android:editTextStyle">@style/DialtactsSearchboxStyle</item> |