Quantcast
Channel: import – Zeeshan Akhter
Viewing all articles
Browse latest Browse all 19

ListView, with icon

$
0
0
ListView in simplest form with plain text only. This exercise describe how to add a icon in ListView. create a new file in /res/layout/row.xml, to setup our layout on each row. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <ImageView android:id="@+id/icon" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/icon"/> <TextView android:id="@+id/weekofday" android:layout_width="wrap_content" android:layout_height="wrap_content"/> </LinearLayout> AndroidList.java package com.exercise.AndroidList; import android.app.ListActivity; import […]

Viewing all articles
Browse latest Browse all 19

Trending Articles