Home | History | Annotate | Download | only in drawable
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2014 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <selector xmlns:android="http://schemas.android.com/apk/res/android"
     18         xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
     19     <item settings:state_encrypted="true">
     20         <level-list>
     21             <item android:maxLevel="0">
     22                 <bitmap
     23                     android:src="@drawable/ic_wifi_lock_signal_1_light"
     24                     android:tint="?attr/wifi_signal_color" />
     25             </item>
     26             <item android:maxLevel="1">
     27                 <bitmap
     28                     android:src="@drawable/ic_wifi_lock_signal_2_light"
     29                     android:tint="?attr/wifi_signal_color" />
     30             </item>
     31             <item android:maxLevel="2">
     32                 <bitmap
     33                     android:src="@drawable/ic_wifi_lock_signal_3_light"
     34                     android:tint="?attr/wifi_signal_color" />
     35             </item>
     36             <item android:maxLevel="3">
     37                 <bitmap
     38                     android:src="@drawable/ic_wifi_lock_signal_4_light"
     39                     android:tint="?attr/wifi_signal_color" />
     40             </item>
     41         </level-list>
     42     </item>
     43     <item settings:state_encrypted="false">
     44         <level-list>
     45             <item android:maxLevel="0">
     46                 <bitmap
     47                     android:src="@drawable/ic_wifi_signal_1_light"
     48                     android:tint="?attr/wifi_signal_color" />
     49             </item>
     50             <item android:maxLevel="1">
     51                 <bitmap
     52                     android:src="@drawable/ic_wifi_signal_2_light"
     53                     android:tint="?attr/wifi_signal_color" />
     54             </item>
     55             <item android:maxLevel="2">
     56                 <bitmap
     57                     android:src="@drawable/ic_wifi_signal_3_light"
     58                     android:tint="?attr/wifi_signal_color" />
     59             </item>
     60             <item android:maxLevel="3">
     61                 <bitmap
     62                     android:src="@drawable/ic_wifi_signal_4_light"
     63                     android:tint="?attr/wifi_signal_color" />
     64             </item>
     65         </level-list>
     66     </item>
     67 </selector>
     68 
     69