<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2012 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. --> <!-- This layout is shared by phone and small size tablet. --> <com.android.camera.ui.IndicatorControlBarContainer xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/indicator_control" android:layout_width="wrap_content" android:layout_height="match_parent" android:clickable="true" android:layout_alignParentRight="true"> <RelativeLayout android:layout_width="@dimen/indicator_bar_width" android:layout_height="match_parent"> <com.android.camera.ui.IndicatorControlBar android:id="@+id/indicator_bar" android:paddingBottom="@dimen/indicator_bar_padding" android:paddingTop="@dimen/indicator_bar_padding" android:layout_height="match_parent" android:layout_width="match_parent" android:layout_centerHorizontal="true"> <com.android.camera.ui.ZoomControlBar android:id="@+id/zoom_control" android:layout_height="match_parent" android:layout_width="match_parent" android:visibility="gone" /> <com.android.camera.ui.RotateImageView android:id="@+id/second_level_indicator" android:layout_width="match_parent" android:layout_height="wrap_content" android:contentDescription="@string/accessibility_second_level_indicators" android:background="@drawable/bg_pressed" android:src="@drawable/ic_settings_holo_light" /> </com.android.camera.ui.IndicatorControlBar> <com.android.camera.ui.SecondLevelIndicatorControlBar android:id="@+id/second_level_indicator_bar" android:layout_height="match_parent" android:layout_width="match_parent" android:paddingTop="@dimen/indicator_bar_padding" android:paddingBottom="@dimen/indicator_bar_padding" android:layout_centerHorizontal="true" android:background="@color/indicator_background" android:visibility="gone"> <View android:id="@+id/divider" android:layout_width="match_parent" android:layout_height="1dp" android:background="@android:color/white" /> <com.android.camera.ui.TwoStateImageView android:id="@+id/back_to_first_level" android:layout_width="match_parent" android:layout_height="wrap_content" android:contentDescription="@string/accessibility_back_to_first_level" android:background="@drawable/bg_pressed" android:src="@drawable/btn_close_settings" android:rotation="270" /> </com.android.camera.ui.SecondLevelIndicatorControlBar> </RelativeLayout> </com.android.camera.ui.IndicatorControlBarContainer>