diff options
author | Kjetil Ørbekk <kjetil.orbekk@gmail.com> | 2012-01-26 19:34:25 +0100 |
---|---|---|
committer | Kjetil Ørbekk <kjetil.orbekk@gmail.com> | 2012-01-26 19:34:25 +0100 |
commit | b35173cc4c9cab138168c2df6d6331837d0cde12 (patch) | |
tree | f98b0215d381d8c456b8989020b8cc88f6a60760 /same-android/res | |
parent | 980f590ef8db3c17567c343d279102a0caa022dd (diff) |
Clean up Android code.
Diffstat (limited to 'same-android/res')
-rw-r--r-- | same-android/res/layout/main.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/same-android/res/layout/main.xml b/same-android/res/layout/main.xml index 8a05563..a286b81 100644 --- a/same-android/res/layout/main.xml +++ b/same-android/res/layout/main.xml @@ -7,16 +7,16 @@ <Button android:id="@+id/button1" - android:layout_width="wrap_content" + android:layout_width="match_parent" android:layout_height="wrap_content" - android:text="Create" - android:onClick="createNetwork" /> + android:onClick="createNetwork" + android:text="Create" /> <Button android:id="@+id/button2" - android:layout_width="wrap_content" + android:layout_width="match_parent" android:layout_height="wrap_content" - android:text="Join" - android:onClick="joinNetwork" /> + android:onClick="joinNetwork" + android:text="Join" /> </LinearLayout> |