diff options
author | Owen Lin <owenlin@google.com> | 2009-06-11 16:02:29 -0700 |
---|---|---|
committer | repo sync <raychen@google.com> | 2009-06-18 17:38:29 +0800 |
commit | dad4b187eec436a2716aca5af31f23ce5de95f39 (patch) | |
tree | 4b3ca9f95434b3135bc30fbb18e0d52b1a80848b /res/drawable/btn_shutter.xml | |
parent | 8d16a5c7fc75e70782efbe970a756de92b564b35 (diff) | |
download | LegacyCamera-dad4b187eec436a2716aca5af31f23ce5de95f39.zip LegacyCamera-dad4b187eec436a2716aca5af31f23ce5de95f39.tar.gz LegacyCamera-dad4b187eec436a2716aca5af31f23ce5de95f39.tar.bz2 |
New UI for camera
Diffstat (limited to 'res/drawable/btn_shutter.xml')
-rw-r--r-- | res/drawable/btn_shutter.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/res/drawable/btn_shutter.xml b/res/drawable/btn_shutter.xml new file mode 100644 index 0000000..12b59fe --- /dev/null +++ b/res/drawable/btn_shutter.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2009 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/btn_shutter_pressed" /> + <item android:state_window_focused="true" + android:state_focused="true" + android:drawable="@drawable/btn_shutter_highlight" /> + <item android:drawable="@drawable/btn_shutter_normal" /> +</selector> + |