1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2007, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11**     http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20
21<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
22              android:layout_width="fill_parent"
23              android:layout_height="fill_parent"
24              android:orientation="vertical">
25
26    <LinearLayout android:layout_width="fill_parent"
27                  android:layout_height="wrap_content"
28                  android:orientation="vertical">
29
30        <TextView android:id="@+id/commandText"
31                  android:layout_width="fill_parent"
32                  android:layout_height="wrap_content"
33                  android:textSize="12pt"/>
34
35        <TextView android:id="@+id/statusText"
36                  android:layout_width="fill_parent"
37                  android:layout_height="wrap_content"/>
38    </LinearLayout>
39
40    <LinearLayout android:layout_width="fill_parent"
41                  android:layout_height="wrap_content"
42                  android:orientation="horizontal">
43
44        <Button android:id="@+id/recordButton"
45                android:layout_width="wrap_content"
46                android:layout_height="wrap_content"
47                android:text="@string/recordButton"/>
48
49        <Button android:id="@+id/redoButton"
50                android:layout_width="wrap_content"
51                android:layout_height="wrap_content"
52                android:text="@string/redoButton"/>
53    </LinearLayout>
54
55    <RadioGroup android:layout_width="wrap_content"
56                android:layout_height="fill_parent"
57                android:padding="10dip"
58                android:orientation="vertical" android:layout_weight="30">
59
60        <RadioButton android:id="@+id/codec11KHzRadioButton"
61                     android:layout_width="wrap_content"
62                     android:layout_height="wrap_content"/>
63
64        <RadioButton android:id="@+id/codec8KHzRadioButton"
65                     android:layout_width="wrap_content"
66                     android:layout_height="wrap_content"/>
67    </RadioGroup>
68
69    <RadioGroup android:layout_width="wrap_content"
70                android:layout_height="fill_parent"
71                android:orientation="vertical" android:layout_weight="30">
72
73        <RadioButton android:id="@+id/callRadioButton"
74                     android:layout_width="wrap_content"
75                     android:layout_height="wrap_content"
76                     android:text="@string/callRadioButton"/>
77
78        <RadioButton android:id="@+id/dialNanpRadioButton"
79                     android:layout_width="wrap_content"
80                     android:layout_height="wrap_content"
81                     android:text="@string/dialNanpRadioButton"/>
82
83        <RadioButton android:id="@+id/dialPairsRadioButton"
84                     android:layout_width="wrap_content"
85                     android:layout_height="wrap_content"
86                     android:text="@string/dialPairsRadioButton"/>
87    </RadioGroup>
88
89</LinearLayout>
90