You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
3.5 KiB
72 lines
3.5 KiB
7 months ago
|
<?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.
|
||
|
-->
|
||
|
<com.android.camera.ui.IndicatorControlBarContainer xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/indicator_control"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_width="match_parent"
|
||
|
android:clickable="true"
|
||
|
android:layout_alignParentBottom="true">
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/control_bars"
|
||
|
android:layout_height="@dimen/indicator_bar_width"
|
||
|
android:layout_width="match_parent">
|
||
|
<com.android.camera.ui.IndicatorControlBar
|
||
|
android:id="@+id/indicator_bar"
|
||
|
android:paddingRight="8dp"
|
||
|
android:paddingLeft="8dp"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_centerVertical="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_bar_icon"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
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:paddingRight="8dp"
|
||
|
android:paddingLeft="8dp"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:background="@color/indicator_background"
|
||
|
android:visibility="gone">
|
||
|
<View android:id="@+id/divider"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_width="1dp"
|
||
|
android:background="@android:color/white" />
|
||
|
<com.android.camera.ui.TwoStateImageView
|
||
|
android:id="@+id/back_to_first_level"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:contentDescription="@string/accessibility_back_to_first_level"
|
||
|
android:background="@drawable/bg_pressed"
|
||
|
android:src="@drawable/btn_close_settings" />
|
||
|
</com.android.camera.ui.SecondLevelIndicatorControlBar>
|
||
|
</RelativeLayout>
|
||
|
</com.android.camera.ui.IndicatorControlBarContainer>
|