diff options
author | Hung-ying Tyan <tyanh@google.com> | 2010-12-08 18:12:18 +0800 |
---|---|---|
committer | Hung-ying Tyan <tyanh@google.com> | 2010-12-08 18:24:22 +0800 |
commit | 74c5164d19fa213c6904639e6e6b0d9e542cbf66 (patch) | |
tree | 1c3e20c03a29f7401d88a387f42b95080f00a58d /res/drawable-xlarge | |
parent | 003dd5a52457c024a0f99a2bb222bfc6ad70bbe5 (diff) | |
download | LegacyCamera-74c5164d19fa213c6904639e6e6b0d9e542cbf66.zip LegacyCamera-74c5164d19fa213c6904639e6e6b0d9e542cbf66.tar.gz LegacyCamera-74c5164d19fa213c6904639e6e6b0d9e542cbf66.tar.bz2 |
Implement camera ring/shutter control new design.
Bug: 3252941
Bug: 3252703
Change-Id: I1901fc88f6310881d8e0c864683041dbf6d986ba
Diffstat (limited to 'res/drawable-xlarge')
-rw-r--r-- | res/drawable-xlarge/btn_ic_camera_shutter.xml | 21 | ||||
-rw-r--r-- | res/drawable-xlarge/btn_shutter.xml | 21 | ||||
-rw-r--r-- | res/drawable-xlarge/btn_shutter_recording.xml | 21 |
3 files changed, 63 insertions, 0 deletions
diff --git a/res/drawable-xlarge/btn_ic_camera_shutter.xml b/res/drawable-xlarge/btn_ic_camera_shutter.xml new file mode 100644 index 0000000..aa98917 --- /dev/null +++ b/res/drawable-xlarge/btn_ic_camera_shutter.xml @@ -0,0 +1,21 @@ +<?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_pressed="true" android:drawable="@drawable/button_ic_camera_shutter_pressed" /> + <item android:drawable="@drawable/button_ic_camera_shutter" /> +</selector> + diff --git a/res/drawable-xlarge/btn_shutter.xml b/res/drawable-xlarge/btn_shutter.xml new file mode 100644 index 0000000..d1772ae --- /dev/null +++ b/res/drawable-xlarge/btn_shutter.xml @@ -0,0 +1,21 @@ +<?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_pressed="true" android:drawable="@drawable/button_camera_shutter_pressed_holo" /> + <item android:drawable="@drawable/button_camera_shutter_holo" /> +</selector> + diff --git a/res/drawable-xlarge/btn_shutter_recording.xml b/res/drawable-xlarge/btn_shutter_recording.xml new file mode 100644 index 0000000..c2a07ff --- /dev/null +++ b/res/drawable-xlarge/btn_shutter_recording.xml @@ -0,0 +1,21 @@ +<?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_pressed="true" android:drawable="@drawable/button_video_shutter_pressed_holo" /> + <item android:drawable="@drawable/button_video_shutter_holo" /> +</selector> + |