Skip to content

Instantly share code, notes, and snippets.

@rohit-nsit08
Created December 9, 2012 10:30
Show Gist options
  • Save rohit-nsit08/4244150 to your computer and use it in GitHub Desktop.
Save rohit-nsit08/4244150 to your computer and use it in GitHub Desktop.
andoid list layout file
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/message"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
tools:context=".Menu" />
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:drawSelectorOnTop="false">
</ListView>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment