Skip to content

Instantly share code, notes, and snippets.

@pbrisbin
Created October 10, 2010 00:19
Show Gist options
  • Save pbrisbin/618757 to your computer and use it in GitHub Desktop.
Save pbrisbin/618757 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="15dip" >
<TextView android:id="@+id/label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/label" />
<EditText android:id="@+id/entry"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:drawable/editbox_background"
android:layout_below="@id/label"
android:text="@string/my_server" />
<Button android:id="@+id/playpause"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:layout_below="@id/entry"
android:layout_alignParentLeft="true"
android:text="@string/play_pause" />
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment