• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 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<LinearLayout
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    android:layout_width="match_parent"
20    android:layout_height="match_parent"
21    android:orientation="vertical" >
22    <ListView
23            android:id="@+id/callListView"
24            android:layout_width="fill_parent"
25            android:layout_height="wrap_content"
26            android:divider="#FFCC00"
27            android:dividerHeight="4px">
28    </ListView>
29    <GridLayout
30        android:columnCount="4"
31        android:layout_width="match_parent"
32        android:layout_height="match_parent"
33        android:orientation="horizontal">
34        <Button
35            android:id="@+id/end_call_button"
36            android:layout_width="wrap_content"
37            android:layout_height="wrap_content"
38            android:text="@string/endCallButton" />
39        <Button
40            android:id="@+id/mute_button"
41            android:layout_width="wrap_content"
42            android:layout_height="wrap_content"
43            android:text="@string/muteButton" />
44        <Button
45            android:id="@+id/hold_button"
46            android:layout_width="wrap_content"
47            android:layout_height="wrap_content"
48            android:text="@string/holdButton"/>
49        <Button
50            android:id="@+id/rtt_iface_button"
51            android:layout_width="wrap_content"
52            android:layout_height="wrap_content"
53            android:text="@string/rttIfaceButton"/>
54        <Button
55            android:id="@+id/answer_button"
56            android:layout_width="wrap_content"
57            android:layout_height="wrap_content"
58            android:text="@string/answerCallButton"/>
59        <Button
60            android:id="@+id/start_rtt_button"
61            android:layout_width="wrap_content"
62            android:layout_height="wrap_content"
63            android:text="@string/startRttButton"/>
64        <Button
65            android:id="@+id/accept_rtt_button"
66            android:layout_width="wrap_content"
67            android:layout_height="wrap_content"
68            android:text="@string/acceptRttButton"/>
69    </GridLayout>
70</LinearLayout>
71