diff options
author | Adnan Begovic <adnan@cyngn.com> | 2015-12-14 17:47:59 -0800 |
---|---|---|
committer | Adnan Begovic <adnan@cyngn.com> | 2015-12-14 17:47:59 -0800 |
commit | abe4aff41352fb2ce92247178ae03a5fc8e2a9bc (patch) | |
tree | 9dff5ffe3b279293fe5864cbecc98e2499fc52ec /res/drawable | |
parent | 61bc55b3561aa4652cfe6df67d3a8c716b7f1e92 (diff) | |
download | packages_apps_Settings-abe4aff41352fb2ce92247178ae03a5fc8e2a9bc.zip packages_apps_Settings-abe4aff41352fb2ce92247178ae03a5fc8e2a9bc.tar.gz packages_apps_Settings-abe4aff41352fb2ce92247178ae03a5fc8e2a9bc.tar.bz2 |
Settings: Fix up management for wifi priority.
Change-Id: I3a173caf6eb2cf7f602071851afe9828cda01ca2
Diffstat (limited to 'res/drawable')
-rw-r--r-- | res/drawable/wifi_no_signal.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/res/drawable/wifi_no_signal.xml b/res/drawable/wifi_no_signal.xml new file mode 100644 index 0000000..7a86de3 --- /dev/null +++ b/res/drawable/wifi_no_signal.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The CyanogenMod 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" + xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"> + <item settings:state_encrypted="true" android:drawable="@drawable/ic_wifi_lock_signal_1_dark" /> + <item settings:state_encrypted="false" android:drawable="@drawable/ic_wifi_signal_1_dark" /> +</selector>
\ No newline at end of file |