Skip to content

Instantly share code, notes, and snippets.

@vkoppaka
Created July 17, 2015 05:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vkoppaka/1744b7ec5fec43b8ee55 to your computer and use it in GitHub Desktop.
Save vkoppaka/1744b7ec5fec43b8ee55 to your computer and use it in GitHub Desktop.
Listview Item Row
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="8dp">
<TextView
android:id="@+id/titleTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20dp"
android:textStyle="bold"
android:paddingLeft="5dp" />
<TextView
android:id="@+id/directedByTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#00A14B"
android:paddingLeft="5dp" />
<TextView
android:id="@+id/releasedDateTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#7F3F97"
android:paddingLeft="5dp" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment