Skip to content

Instantly share code, notes, and snippets.

@leonguyen
Last active December 15, 2015 22:49
Show Gist options
  • Select an option

  • Save leonguyen/5335460 to your computer and use it in GitHub Desktop.

Select an option

Save leonguyen/5335460 to your computer and use it in GitHub Desktop.
Android Lab: List View with Custom Layout - Defining an XML Layout
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dip"
android:textSize="16dip" >
</TextView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment