Merge "Blue notify quicksettings icon implemented"
|
Before Width: | Height: | Size: 531 B After Width: | Height: | Size: 799 B |
|
Before Width: | Height: | Size: 532 B After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 463 B After Width: | Height: | Size: 698 B |
|
Before Width: | Height: | Size: 465 B After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 894 B |
|
After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 722 B After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 748 B After Width: | Height: | Size: 4.9 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 4.7 KiB |
21
packages/SystemUI/res/drawable/ic_notify_quicksettings.xml
Normal file
@@ -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_pressed="true"
|
||||
android:drawable="@drawable/ic_notify_quicksettings_pressed" />
|
||||
<item android:drawable="@drawable/ic_notify_quicksettings_normal" />
|
||||
</selector>
|
||||
@@ -58,22 +58,24 @@
|
||||
android:textColor="?android:attr/textColorSecondary"
|
||||
/>
|
||||
-->
|
||||
|
||||
<ImageView android:id="@+id/settings_button"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_toRightOf="@id/date"
|
||||
android:paddingLeft="16dp"
|
||||
android:paddingRight="16dp"
|
||||
android:src="@drawable/ic_sysbar_quicksettings"
|
||||
android:paddingLeft="8dp"
|
||||
android:paddingRight="8dp"
|
||||
android:src="@drawable/ic_notify_quicksettings"
|
||||
/>
|
||||
|
||||
<ImageView android:id="@+id/clear_all_button"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_alignParentRight="true"
|
||||
android:paddingLeft="16dp"
|
||||
android:paddingRight="16dp"
|
||||
android:paddingLeft="8dp"
|
||||
android:paddingRight="8dp"
|
||||
android:src="@drawable/ic_notify_clear"
|
||||
/>
|
||||
/>
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
|
||||