Skip to content

Instantly share code, notes, and snippets.

@rtorr
Created August 24, 2012 17:56
Show Gist options
  • Save rtorr/3453514 to your computer and use it in GitHub Desktop.
Save rtorr/3453514 to your computer and use it in GitHub Desktop.
android-layout: list layout
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TableRow>
<TextView
android:layout_column="1"
android:text="•"></TextView>
<TextView
android:layout_column="2"
android:layout_width="wrap_content"
android:text="First line"></TextView>
</TableRow>
<TableRow>
<TextView
android:layout_column="1"
android:text="•"></TextView>
<TextView
android:layout_column="2"
android:layout_width="wrap_content"
android:text="Second line"></TextView>
</TableRow>
</TableLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment