Initial commit
[fonbot.git] / res / layout / local.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:orientation="vertical" >
6
7 <ScrollView
8 android:layout_width="match_parent"
9 android:layout_height="0dp"
10 android:layout_weight="1" >
11
12 <TextView
13 android:id="@+id/consoleTextView"
14 android:layout_width="match_parent"
15 android:layout_height="wrap_content"
16 android:freezesText="true"
17 android:textIsSelectable="true" />
18
19 </ScrollView>
20
21 <EditText
22 android:id="@+id/argEditText"
23 android:layout_width="match_parent"
24 android:layout_height="wrap_content"
25 android:imeOptions="actionSend|flagForceAscii"
26 android:inputType="text"
27 android:singleLine="true" >
28 <requestFocus />
29 </EditText>
30
31 </LinearLayout>
This page took 0.022113 seconds and 4 git commands to generate.