• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!--
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<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17              android:layout_width="match_parent"
18              android:layout_height="match_parent"
19              android:gravity="center_horizontal"
20              android:orientation="horizontal"
21              android:paddingBottom="@dimen/activity_vertical_margin"
22              android:paddingLeft="@dimen/activity_horizontal_margin"
23              android:paddingRight="@dimen/activity_horizontal_margin"
24              android:paddingTop="@dimen/activity_vertical_margin"
25              android:baselineAligned="false">
26    <LinearLayout
27        android:layout_width="0dp"
28        android:layout_height="match_parent"
29        android:layout_weight="1"
30        android:orientation="vertical">
31        <Button
32            android:id="@+id/send_1_conversation"
33            android:layout_width="match_parent"
34            android:layout_height="wrap_content"
35            android:text="@string/send_1_conversation"/>
36
37        <Button
38            android:id="@+id/send_2_conversations"
39            android:layout_width="match_parent"
40            android:layout_height="wrap_content"
41            android:text="@string/send_2_conversations"/>
42
43        <Button
44            android:id="@+id/send_1_conversation_3_messages"
45            android:layout_width="match_parent"
46            android:layout_height="wrap_content"
47            android:text="@string/send_1_conv_3_messages"/>
48    </LinearLayout>
49    <RelativeLayout
50        android:layout_width="0dp"
51        android:layout_height="match_parent"
52        android:layout_weight="2">
53        <Button
54            android:id="@+id/clear"
55            android:layout_alignParentBottom="true"
56            android:layout_width="match_parent"
57            android:layout_height="wrap_content"
58            android:text="@string/clear_log"/>
59
60        <TextView
61            android:id="@+id/data_port"
62            android:layout_above="@id/clear"
63            android:layout_width="match_parent"
64            android:layout_height="match_parent"
65            android:scrollbars="vertical"/>
66    </RelativeLayout>
67</LinearLayout>
68