voice_interaction_session.xml revision d3fdb8bed8e836786253f9cd5ab640c7c5ed8501
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 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
17<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
18    android:layout_width="fill_parent"
19    android:layout_height="match_parent"
20    android:fitsSystemWindows="true">
21
22    <FrameLayout android:layout_width="fill_parent"
23        android:layout_height="match_parent"
24        android:padding="8dp">
25
26        <LinearLayout android:id="@+id/content"
27            android:layout_width="fill_parent"
28            android:layout_height="match_parent"
29            android:orientation="vertical"
30            android:background="#ffffffff"
31            android:elevation="8dp"
32            >
33
34            <TextView android:id="@+id/text"
35                android:layout_width="fill_parent"
36                android:layout_height="wrap_content"
37                android:layout_marginBottom="16dp"
38                android:textAppearance="?android:attr/textAppearanceMedium"
39                />
40
41            <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content"
42                    android:orientation="horizontal">
43                <Button android:id="@+id/start"
44                    android:layout_width="wrap_content"
45                    android:layout_height="wrap_content"
46                    android:text="@string/start"
47                    />
48                <Button android:id="@+id/confirm"
49                    android:layout_width="wrap_content"
50                    android:layout_height="wrap_content"
51                    android:text="@string/confirm"
52                    />
53                <Button android:id="@+id/complete"
54                    android:layout_width="wrap_content"
55                    android:layout_height="wrap_content"
56                    android:text="@string/complete"
57                    />
58                <Button android:id="@+id/abort"
59                    android:layout_width="wrap_content"
60                    android:layout_height="wrap_content"
61                    android:text="@string/abort"
62                    />
63            </LinearLayout>
64
65        </LinearLayout>
66    </FrameLayout>
67</FrameLayout>
68