Skip to content

Instantly share code, notes, and snippets.

@pacificregmi
Created February 16, 2016 06:26
Show Gist options
  • Save pacificregmi/02f34d418486d01938b7 to your computer and use it in GitHub Desktop.
Save pacificregmi/02f34d418486d01938b7 to your computer and use it in GitHub Desktop.
Android ListView with Image and Text - layout/activity_listview_with_image_and_text.xml
<?xml version="1.0" encoding="utf-8"?>
<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"
tools:context="viralandroid.com.androidlistviewwithimageandtext.ListViewWithImageAndText">
<ListView
android:id="@+id/list_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment