priority_indicators.xml revision 204224ce0423e4a6a29fa015128131c71b9bb9d8
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17        android:orientation="vertical"
18        android:layout_alignParentRight="true"
19        android:layout_alignParentTop="true"
20        android:layout_height="wrap_content"
21        android:layout_width="wrap_content"
22        android:padding="8dp">
23    <ImageView android:id="@+id/onscreen_flash_indicator"
24            style="@style/OnScreenIndicator"
25            android:visibility="visible"/>
26    <ImageView android:id="@+id/onscreen_white_balance_indicator"
27            style="@style/OnScreenIndicator"/>
28    <TextView android:id="@+id/onscreen_exposure_indicator"
29            style="@style/OnScreenIndicator"
30            android:layout_marginTop="6dp"
31            android:layout_marginBottom="6dp"
32            android:gravity="center_vertical"
33            android:textSize="15dp"
34            android:textColor="@android:color/white"/>
35    <ImageView android:id="@+id/onscreen_scene_indicator"
36            style="@style/OnScreenIndicator"
37            android:src="@drawable/ic_indicators_scn"/>
38    <ImageView android:id="@+id/onscreen_gps_indicator"
39            style="@style/OnScreenIndicator"/>
40    <ImageView android:id="@+id/onscreen_focus_indicator"
41            style="@style/OnScreenIndicator"/>
42</LinearLayout>
43