Created
June 13, 2012 11:42
-
-
Save anonymous/2923585 to your computer and use it in GitHub Desktop.
the layout contains 4 buttons and a textview...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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