diff options
author | Wu-cheng Li <wuchengli@google.com> | 2011-08-24 23:34:35 +0800 |
---|---|---|
committer | Wu-cheng Li <wuchengli@google.com> | 2011-08-28 16:27:01 +0800 |
commit | 7097299bb13ba2e8defca40e82bc7b28982a41cf (patch) | |
tree | 6b9f2332c1366d8a3392bb8bb3701942ff601759 /res/layout/share_icon.xml | |
parent | 5f47cc1a9ce83a5656751df5705674a1711687d1 (diff) | |
download | LegacyCamera-7097299bb13ba2e8defca40e82bc7b28982a41cf.zip LegacyCamera-7097299bb13ba2e8defca40e82bc7b28982a41cf.tar.gz LegacyCamera-7097299bb13ba2e8defca40e82bc7b28982a41cf.tar.bz2 |
Add applicaton icons to share popup.
bug:5157438
Change-Id: I9ed34ae1f4b2058a7ec0f7a29ae9196c84a24a72
Diffstat (limited to 'res/layout/share_icon.xml')
-rw-r--r-- | res/layout/share_icon.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/res/layout/share_icon.xml b/res/layout/share_icon.xml new file mode 100644 index 0000000..7ab2e3b --- /dev/null +++ b/res/layout/share_icon.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 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. +--> +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="@dimen/share_item_height"> + <com.android.camera.ui.RotateLayout android:id="@+id/share_icon_rotate_layout" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center"> + <ImageView android:id="@+id/icon" + android:layout_width="@dimen/share_icon_length" + android:layout_height="@dimen/share_icon_length"/> + </com.android.camera.ui.RotateLayout> +</FrameLayout> |