blob: 044a35567c81604f2b5f6081ed3e66cf8ca4e3de [file] [log] [blame]
Fabrice Di Meglio9f82b582011-03-08 12:02:59 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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 xmlns:android="http://schemas.android.com/apk/res/android"
18 android:orientation="vertical"
19 android:layout_width="match_parent"
20 android:layout_height="match_parent">
21
22 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
23 android:orientation="horizontal"
24 android:layout_width="match_parent"
25 android:layout_height="wrap_content">
26
27 <Button android:id="@+id/button"
28 android:layout_height="wrap_content"
29 android:layout_width="wrap_content"
30 android:onClick="onButtonClick"
31 android:text="@string/button_text"
32 android:textSize="32dip"
33 />
34
35 <TextView android:id="@+id/textview"
36 android:layout_height="wrap_content"
37 android:layout_width="wrap_content"
38 android:textSize="32dip"
39 android:text="@string/textview_text"
40 />
41
42 <EditText android:id="@+id/textview"
43 android:layout_height="wrap_content"
44 android:layout_width="match_parent"
45 android:textSize="32dip"
Fabrice Di Meglio9f82b582011-03-08 12:02:59 -080046 />
47
48 </LinearLayout>
49
Fabrice Di Meglioeee49c62011-03-24 17:21:23 -070050 <SeekBar android:id="@+id/seekbar"
51 android:layout_height="wrap_content"
52 android:layout_width="match_parent"
53 />
54
Fabrice Di Meglio9f82b582011-03-08 12:02:59 -080055 <view class="com.android.bidi.BiDiTestView"
56 android:id="@+id/main"
57 android:layout_width="match_parent"
58 android:layout_height="wrap_content"
59 android:background="#FF0000"
60 />
61
62</LinearLayout>