diff options
author | Yorke Lee <yorkelee@google.com> | 2013-10-14 19:01:43 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-10-14 19:01:43 -0700 |
commit | 122be73e74ddb1d8f4d25bb9f0c26eb599fea822 (patch) | |
tree | 11720d3488e42877f853c56b9fe9d73854498188 /res | |
parent | 25ffb8c8482ab15d66cd49b0e44f380dd8770660 (diff) | |
parent | 1fce9655b83972f7e0bdf331570720d9e07645d3 (diff) |
am 1fce9655: am a7d844c6: Flip arrow direction in dialer info tooltip
* commit '1fce9655b83972f7e0bdf331570720d9e07645d3':
Flip arrow direction in dialer info tooltip
Diffstat (limited to 'res')
-rw-r--r-- | res/drawable-hdpi/ic_arrow.png | bin | 852 -> 0 bytes | |||
-rw-r--r-- | res/drawable-hdpi/ic_arrow_am.png | bin | 0 -> 810 bytes | |||
-rw-r--r-- | res/drawable-mdpi/ic_arrow.png | bin | 697 -> 0 bytes | |||
-rw-r--r-- | res/drawable-mdpi/ic_arrow_am.png | bin | 0 -> 648 bytes | |||
-rw-r--r-- | res/drawable-xhdpi/ic_arrow.png | bin | 1017 -> 0 bytes | |||
-rw-r--r-- | res/drawable-xhdpi/ic_arrow_am.png | bin | 0 -> 973 bytes | |||
-rw-r--r-- | res/drawable-xxhdpi/ic_arrow.png | bin | 1506 -> 0 bytes | |||
-rw-r--r-- | res/drawable-xxhdpi/ic_arrow_am.png | bin | 0 -> 3272 bytes | |||
-rw-r--r-- | res/drawable/ic_arrow.xml | 20 | ||||
-rw-r--r-- | res/layout/tile_interactions_teaser_view.xml | 5 |
10 files changed, 22 insertions, 3 deletions
diff --git a/res/drawable-hdpi/ic_arrow.png b/res/drawable-hdpi/ic_arrow.png Binary files differdeleted file mode 100644 index 8d0dfcd47..000000000 --- a/res/drawable-hdpi/ic_arrow.png +++ /dev/null diff --git a/res/drawable-hdpi/ic_arrow_am.png b/res/drawable-hdpi/ic_arrow_am.png Binary files differnew file mode 100644 index 000000000..6fecb9322 --- /dev/null +++ b/res/drawable-hdpi/ic_arrow_am.png diff --git a/res/drawable-mdpi/ic_arrow.png b/res/drawable-mdpi/ic_arrow.png Binary files differdeleted file mode 100644 index 96440a2be..000000000 --- a/res/drawable-mdpi/ic_arrow.png +++ /dev/null diff --git a/res/drawable-mdpi/ic_arrow_am.png b/res/drawable-mdpi/ic_arrow_am.png Binary files differnew file mode 100644 index 000000000..11bf05bf7 --- /dev/null +++ b/res/drawable-mdpi/ic_arrow_am.png diff --git a/res/drawable-xhdpi/ic_arrow.png b/res/drawable-xhdpi/ic_arrow.png Binary files differdeleted file mode 100644 index 889c33fce..000000000 --- a/res/drawable-xhdpi/ic_arrow.png +++ /dev/null diff --git a/res/drawable-xhdpi/ic_arrow_am.png b/res/drawable-xhdpi/ic_arrow_am.png Binary files differnew file mode 100644 index 000000000..ffbd3996b --- /dev/null +++ b/res/drawable-xhdpi/ic_arrow_am.png diff --git a/res/drawable-xxhdpi/ic_arrow.png b/res/drawable-xxhdpi/ic_arrow.png Binary files differdeleted file mode 100644 index f8e7731d4..000000000 --- a/res/drawable-xxhdpi/ic_arrow.png +++ /dev/null diff --git a/res/drawable-xxhdpi/ic_arrow_am.png b/res/drawable-xxhdpi/ic_arrow_am.png Binary files differnew file mode 100644 index 000000000..4938de29c --- /dev/null +++ b/res/drawable-xxhdpi/ic_arrow_am.png diff --git a/res/drawable/ic_arrow.xml b/res/drawable/ic_arrow.xml new file mode 100644 index 000000000..f97623b63 --- /dev/null +++ b/res/drawable/ic_arrow.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (C) 2013 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_am" + android:autoMirrored="true"> +</bitmap>
\ No newline at end of file diff --git a/res/layout/tile_interactions_teaser_view.xml b/res/layout/tile_interactions_teaser_view.xml index c329dd32c..410444670 100644 --- a/res/layout/tile_interactions_teaser_view.xml +++ b/res/layout/tile_interactions_teaser_view.xml @@ -31,8 +31,7 @@ <ImageView android:id="@+id/arrow" android:layout_width="48dp" - android:layout_height="match_parent" - android:layout_marginBottom="12dp" + android:layout_height="wrap_content" android:layout_marginLeft="16dp" android:layout_marginRight="12dp" android:duplicateParentState="true" @@ -60,7 +59,7 @@ android:background="@color/undo_dialogue_text_color" android:layout_marginTop="16dp" android:layout_marginBottom="16dp" - android:layout_marginLeft="16dp"/> + android:layout_marginStart="16dp"/> <ImageButton android:id="@+id/dismiss_button" |