diff options
author | Scott Kennedy <skennedy@google.com> | 2013-06-12 19:06:31 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-06-12 19:06:31 -0700 |
commit | 496ba2a7761b6dd6c01a4dc9827fa8ebb4efd30f (patch) | |
tree | 53aa6a75a9002e380d9263db106bccc14ea0eb9c /res/drawable | |
parent | 43d2cb188e586d84db0db1da3241a615185c7d12 (diff) | |
parent | 9c8b4aec771eed90777823d8644a0093ac7f66b9 (diff) | |
download | android_packages_apps_UnifiedEmail-496ba2a7761b6dd6c01a4dc9827fa8ebb4efd30f.tar.gz android_packages_apps_UnifiedEmail-496ba2a7761b6dd6c01a4dc9827fa8ebb4efd30f.tar.bz2 android_packages_apps_UnifiedEmail-496ba2a7761b6dd6c01a4dc9827fa8ebb4efd30f.zip |
am 9c8b4aec: Add a proper radio button asset for use with RadioButton
* commit '9c8b4aec771eed90777823d8644a0093ac7f66b9':
Add a proper radio button asset for use with RadioButton
Diffstat (limited to 'res/drawable')
-rw-r--r-- | res/drawable/radio_button.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/res/drawable/radio_button.xml b/res/drawable/radio_button.xml new file mode 100644 index 000000000..e9cb93983 --- /dev/null +++ b/res/drawable/radio_button.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2013 Google Inc. + Licensed to 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_checked="true" android:drawable="@drawable/ic_radiobutton_selected" /> + <item android:drawable="@drawable/ic_radiobutton" /> +</selector> |