diff options
author | Wu-cheng Li <wuchengli@google.com> | 2009-06-19 19:28:47 +0800 |
---|---|---|
committer | Wu-cheng Li <wuchengli@google.com> | 2009-06-19 19:38:23 +0800 |
commit | 46fc7aeec04021dfc2f4c947649888dbc7408f53 (patch) | |
tree | 6152652ebb67d4c76780b0d9027388c1a05e0605 /res/drawable | |
parent | c835e377be4ed36abaeed6dcb42e71b6b8690e05 (diff) | |
download | LegacyCamera-46fc7aeec04021dfc2f4c947649888dbc7408f53.zip LegacyCamera-46fc7aeec04021dfc2f4c947649888dbc7408f53.tar.gz LegacyCamera-46fc7aeec04021dfc2f4c947649888dbc7408f53.tar.bz2 |
Integrate camcorder review mode to ReviewImage.
Diffstat (limited to 'res/drawable')
-rw-r--r-- | res/drawable/btn_camera_review.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/res/drawable/btn_camera_review.xml b/res/drawable/btn_camera_review.xml new file mode 100644 index 0000000..777cf40 --- /dev/null +++ b/res/drawable/btn_camera_review.xml @@ -0,0 +1,25 @@ +<?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_camera_review_pressed" /> + <item android:state_window_focused="true" + android:state_focused="true" + android:drawable="@drawable/btn_camera_review_highlight" /> + <item android:drawable="@drawable/btn_camera_review_normal" /> +</selector> + + |