Skip to content

Instantly share code, notes, and snippets.

Created June 13, 2012 11:42
the layout contains 4 buttons and a textview...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/t_id"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.54"
android:text="@string/t_some_text" />
<Button
android:id="@+id/b_1_id "
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/b_1" />
<Button
android:id="@+id/b_2_id "
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/b_2" />
<Button
android:id="@+id/b_3_id "
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/b_3" />
<Button
android:id="@+id/b_4_id"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/b_4" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment