Skip to content

Instantly share code, notes, and snippets.

@suma
Created May 11, 2011 08:39
Show Gist options
  • Save suma/966121 to your computer and use it in GitHub Desktop.
Save suma/966121 to your computer and use it in GitHub Desktop.
android layout example
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/top"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:text="@string/center"
android:layout_weight="1"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/bottom"
/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment