am a7099540: Merge "Adding pressed state to overview mode buttons (issue 10926631)" into jb-ub-now-indigo-rose
* commit 'a709954065c174b53b8ba788fc45c0f350799300': Adding pressed state to overview mode buttons (issue 10926631)
|
After Width: | Height: | Size: 9.8 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 6.9 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
@@ -0,0 +1,21 @@
|
||||
<?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.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_focused="true" android:drawable="@drawable/ic_setting_pressed" />
|
||||
<item android:state_pressed="true" android:drawable="@drawable/ic_setting_pressed" />
|
||||
<item android:drawable="@drawable/ic_setting" />
|
||||
</selector>
|
||||
@@ -0,0 +1,21 @@
|
||||
<?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.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_focused="true" android:drawable="@drawable/ic_wallpaper_pressed" />
|
||||
<item android:state_pressed="true" android:drawable="@drawable/ic_wallpaper_pressed" />
|
||||
<item android:drawable="@drawable/ic_wallpaper" />
|
||||
</selector>
|
||||
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2011 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.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_focused="true" android:drawable="@drawable/ic_widget_pressed" />
|
||||
<item android:state_pressed="true" android:drawable="@drawable/ic_widget_pressed" />
|
||||
<item android:drawable="@drawable/ic_widget" />
|
||||
</selector>
|
||||
@@ -27,7 +27,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/wallpaper_button_text"
|
||||
android:drawablePadding="4dp"
|
||||
android:drawableTop="@drawable/ic_wallpaper"
|
||||
android:drawableTop="@drawable/wallpaper_button"
|
||||
android:gravity="center_horizontal"
|
||||
android:fontFamily="sans-serif-condensed"
|
||||
android:textAllCaps="true"
|
||||
@@ -42,7 +42,7 @@
|
||||
android:text="@string/widget_button_text"
|
||||
android:drawablePadding="4dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:drawableTop="@drawable/ic_widget"
|
||||
android:drawableTop="@drawable/widget_button"
|
||||
android:fontFamily="sans-serif-condensed"
|
||||
android:textAllCaps="true"
|
||||
android:textSize="12sp"/>
|
||||
@@ -56,7 +56,7 @@
|
||||
android:text="@string/settings_button_text"
|
||||
android:drawablePadding="4dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:drawableTop="@drawable/ic_setting"
|
||||
android:drawableTop="@drawable/setting_button"
|
||||
android:fontFamily="sans-serif-condensed"
|
||||
android:textAllCaps="true"
|
||||
android:textSize="12sp" />
|
||||
|
||||