Created
June 6, 2015 22:16
-
-
Save abbas-oveissi/963af59e69ba7dd8019e to your computer and use it in GitHub Desktop.
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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:orientation="vertical" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
> | |
<TableLayout | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
android:stretchColumns="*" | |
> | |
<TableRow | |
android:layout_weight="1" | |
android:gravity="center"> | |
<LinearLayout android:orientation="horizontal" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent"> | |
<Button android:text="Button" android:layout_weight=".33333" android:layout_width="fill_parent" android:layout_height="fill_parent"/> | |
<Button android:text="Button" android:layout_weight=".33333" android:layout_width="fill_parent" android:layout_height="fill_parent"/> | |
<Button android:text="Button" android:layout_weight=".33334" android:layout_width="fill_parent" android:layout_height="fill_parent"/> | |
</LinearLayout> | |
</TableRow> | |
<TableRow | |
android:layout_weight="1" | |
android:gravity="center"> | |
<LinearLayout android:orientation="horizontal" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent"> | |
<Button android:text="Button" android:layout_weight=".33333" android:layout_width="fill_parent" android:layout_height="fill_parent"/> | |
<Button android:text="Button" android:layout_weight=".33333" android:layout_width="fill_parent" android:layout_height="fill_parent"/> | |
<Button android:text="Button" android:layout_weight=".33334" android:layout_width="fill_parent" android:layout_height="fill_parent"/> | |
</LinearLayout> | |
</TableRow> | |
<TableRow | |
android:layout_weight="1" | |
android:gravity="center"> | |
<LinearLayout android:orientation="horizontal" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent"> | |
<Button android:text="Button" android:layout_weight=".5" android:layout_width="fill_parent" android:layout_height="fill_parent"/> | |
<Button android:text="Button" android:layout_weight=".5" android:layout_width="fill_parent" android:layout_height="fill_parent"/> | |
</LinearLayout> | |
</TableRow> | |
</TableLayout> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment