| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2014 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 tablet in landscape orientation. --> |
| <!-- TODO: make horizontal once nine patch stretches horizontally --> |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| android:id="@+id/mode_options_toggle" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:padding="@dimen/mode_options_toggle_padding" |
| android:layout_margin="@dimen/mode_options_toggle_padding" |
| android:orientation="horizontal" |
| android:contentDescription="@string/accessibility_mode_options" |
| android:background="@drawable/bg_options_indicator" |
| android:layout_gravity="top|right" > |
| <ImageView |
| android:id="@+id/exposure_n2_indicator" |
| style="@style/IndicatorIcon" |
| android:src="@drawable/ic_exposure_n2_indicator" /> |
| <ImageView |
| android:id="@+id/exposure_n1_indicator" |
| style="@style/IndicatorIcon" |
| android:src="@drawable/ic_exposure_n1_indicator" /> |
| <ImageView |
| android:id="@+id/exposure_p1_indicator" |
| style="@style/IndicatorIcon" |
| android:src="@drawable/ic_exposure_p1_indicator" /> |
| <ImageView |
| android:id="@+id/exposure_p2_indicator" |
| style="@style/IndicatorIcon" |
| android:src="@drawable/ic_exposure_p2_indicator" /> |
| <ImageView |
| android:id="@+id/pano_indicator" |
| style="@style/IndicatorIcon" /> |
| <ImageView |
| android:id="@+id/hdr_indicator" |
| style="@style/IndicatorIcon" /> |
| <ImageView |
| android:id="@+id/countdown_timer_indicator" |
| style="@style/IndicatorIcon" /> |
| <ImageView |
| android:id="@+id/flash_indicator" |
| style="@style/IndicatorIcon" /> |
| <ImageView |
| android:id="@+id/three_dots" |
| style="@style/IndicatorIcon" |
| android:src="@drawable/ic_options_land" |
| android:contentDescription="@string/accessibility_mode_options" |
| android:visibility="visible" /> |
| </LinearLayout> |