Skip to content

Instantly share code, notes, and snippets.

@AhmedDaou
Created November 19, 2015 21:28
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 AhmedDaou/481c8ba1853cd78bad9a to your computer and use it in GitHub Desktop.
Save AhmedDaou/481c8ba1853cd78bad9a to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="65dip"
android:orientation="vertical" >
<TextView
android:id="@+id/lblListItem"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold|italic"
android:textSize="17dip"
android:text="Title"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:paddingLeft="?android:attr/expandableListPreferredChildPaddingLeft" />
<TextView
android:id="@+id/lblListItemDetail"
android:singleLine="false"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:wrap_content="true"
android:textSize="10dip"
android:text="definition"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:paddingLeft="?android:attr/expandableListPreferredChildPaddingLeft" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment