diff options
Diffstat (limited to 'samples/BluetoothChat/res/layout/main.xml')
-rw-r--r-- | samples/BluetoothChat/res/layout/main.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/samples/BluetoothChat/res/layout/main.xml b/samples/BluetoothChat/res/layout/main.xml index 307f5a5b4..17025f6bb 100644 --- a/samples/BluetoothChat/res/layout/main.xml +++ b/samples/BluetoothChat/res/layout/main.xml @@ -16,19 +16,19 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" - android:layout_width="fill_parent" - android:layout_height="fill_parent" + android:layout_width="match_parent" + android:layout_height="match_parent" > <ListView android:id="@+id/in" - android:layout_width="fill_parent" - android:layout_height="fill_parent" + android:layout_width="match_parent" + android:layout_height="match_parent" android:stackFromBottom="true" android:transcriptMode="alwaysScroll" android:layout_weight="1" /> <LinearLayout android:orientation="horizontal" - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" > <EditText android:id="@+id/edit_text_out" |