OLD | NEW |
| (Empty) |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <!-- Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. --> | |
3 <!-- --> | |
4 <!-- Use of this source code is governed by a BSD-style license --> | |
5 <!-- that can be found in the LICENSE file in the root of the source --> | |
6 <!-- tree. An additional intellectual property rights grant can be found --> | |
7 <!-- in the file PATENTS. All contributing project authors may --> | |
8 <!-- be found in the AUTHORS file in the root of the source tree. --> | |
9 | |
10 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
11 android:orientation="vertical" | |
12 android:layout_width="fill_parent" | |
13 android:layout_height="fill_parent"> | |
14 | |
15 <TextView android:text="@+id/TextView01" | |
16 android:id="@+id/TextView01" | |
17 android:layout_width="wrap_content" | |
18 android:layout_height="wrap_content"> | |
19 </TextView> | |
20 <EditText android:text="@+id/EditText01" | |
21 android:id="@+id/EditText01" | |
22 android:layout_width="wrap_content" | |
23 android:layout_height="wrap_content"> | |
24 </EditText> | |
25 <Button android:text="@+id/Button01" | |
26 android:id="@+id/Button01" | |
27 android:layout_width="wrap_content" | |
28 android:layout_height="wrap_content"> | |
29 </Button> | |
30 <Spinner android:id="@+id/Spinner01" | |
31 android:layout_width="wrap_content" | |
32 android:layout_height="wrap_content"> | |
33 </Spinner> | |
34 <Spinner android:id="@+id/Spinner02" | |
35 android:layout_width="wrap_content" | |
36 android:layout_height="wrap_content"> | |
37 </Spinner> | |
38 <Button android:text="@+id/Button02" | |
39 android:id="@+id/Button02" | |
40 android:layout_width="wrap_content" | |
41 android:layout_height="wrap_content"> | |
42 </Button> | |
43 </LinearLayout> | |
OLD | NEW |