diff options
author | Chung-yih Wang <cywang@google.com> | 2010-11-22 13:46:30 +0800 |
---|---|---|
committer | Chung-yih Wang <cywang@google.com> | 2010-11-25 19:07:04 +0800 |
commit | 59ddc8c1add2fcffe523e3877baad1b6cc5ba2fb (patch) | |
tree | 9ef281563deca6c36963757340a33df46b0449bc /res/drawable | |
parent | 623fc04dd6194559a22b8cc9305473bf9205eb58 (diff) | |
download | LegacyCamera-59ddc8c1add2fcffe523e3877baad1b6cc5ba2fb.zip LegacyCamera-59ddc8c1add2fcffe523e3877baad1b6cc5ba2fb.tar.gz LegacyCamera-59ddc8c1add2fcffe523e3877baad1b6cc5ba2fb.tar.bz2 |
Add front/back camera switch
bug:3156676
Change-Id: I8a5394aefa068cb099b89c5739abf0cfd78591a9
Diffstat (limited to 'res/drawable')
-rw-r--r-- | res/drawable/btn_camera_picker.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/res/drawable/btn_camera_picker.xml b/res/drawable/btn_camera_picker.xml new file mode 100644 index 0000000..109d57f --- /dev/null +++ b/res/drawable/btn_camera_picker.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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:color="@android:color/white" /> + <item android:color="@android:color/darker_gray" /> +</selector> |