Skip to content

Instantly share code, notes, and snippets.

@venkatesh05
Created May 25, 2012 10:17
Show Gist options
  • Select an option

  • Save venkatesh05/2787144 to your computer and use it in GitHub Desktop.

Select an option

Save venkatesh05/2787144 to your computer and use it in GitHub Desktop.
Frame Layout demo
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:src="@drawable/androidnewlogo"
android:scaleType="fitCenter"
android:layout_height="fill_parent"
android:layout_width="fill_parent"/>
<TextView
android:text="AndroidPlayBook"
android:textSize="24sp"
android:textColor="#000000"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:gravity="center"/>
</FrameLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment