Custom ListView in Android/Listview with image and text/ custom list tutorial/Listview using custom adapter
main.xml
<?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"     > <ListView  android:layout_height="wrap_content" android:id="@+id/listView1" android:layout_width="match_parent"> </ListView> </LinearLayout>  |  
listviewitems.xml
<?xml   version="1.0" encoding="utf-8"?> <LinearLayout     xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:background="#63B8FF">       <LinearLayout        android:layout_width="match_parent"        android:id="@+id/linearLayout1"        android:layout_height="70dip">           <TextView            android:text="TextView"            android:id="@+id/textView1"            android:layout_width="250dip"            android:textColor="#000000"           android:layout_height="wrap_content">           </TextView>           <ImageView            android:layout_width="wrap_content"            android:id="@+id/imageView2"            android:layout_height="wrap_content"            android:src="@drawable/icon"           >           </ImageView>       </LinearLayout> </LinearLayout>  |  
CustomListviewActivity.java
package custom.listview; import java.util.List; import   java.util.Vector; import   android.app.Activity; import   android.app.ListActivity; import   android.content.Context; import   android.net.ParseException; import   android.os.Bundle; import   android.view.LayoutInflater; import   android.view.View; import   android.view.ViewGroup; import   android.widget.ArrayAdapter; import   android.widget.ImageView; import   android.widget.TextView; public class   CustomListviewActivity extends ListActivity { ArrayList<String> textfield; ArrayList<Integer> imagefield; CustomAdapter customadapter; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); listView=(ListView)findViewById(R.id.listView1); preparetext(); prepareimage(); customadapter= new CustomAdapter(this, textfield, imagefield); listView.setAdapter(customadapter); } public void preparetext() { textfield=new ArrayList<String>(); textfield.add("Sony Ericson Xperia"); textfield.add("Motorola Droid"); textfield.add("Samsung Galaxy"); } public void prepareimage() { imagefield=new ArrayList<Integer>(); imagefield.add(R.drawable.icon1); imagefield.add(R.drawable.icon2); imagefield.add(R.drawable.icon3); } private class CustomAdapter extends ArrayAdapter<Object> { Activity activity; ArrayList<String> textfield; ArrayList<Integer> imagefield; public CustomAdapter(Activity context, ArrayList<String> name,ArrayList<Integer> image) { super(context, 0); activity=context; this.textfield=name; this.imagefield=image; } @Override public View getView(int position, View convertView, ViewGroup parent) { ImageView imgViewFlag; TextView txtViewTitle; LayoutInflater inflator = activity.getLayoutInflater(); convertView = inflator.inflate(R.layout.listviewitems, null); txtViewTitle = (TextView) convertView.findViewById(R.id.textView1); imgViewFlag = (ImageView) convertView.findViewById(R.id.imageView2); txtViewTitle.setText(textfield.get(position)); imgViewFlag.setImageResource(imagefield.get(position)); return convertView; } @Override public int getCount() { // TODO Auto-generated method stub return textfield.size(); } @Override public String getItem(int position) { // TODO Auto-generated method stub return textfield.get(position); } @Override public long getItemId(int position) { // TODO Auto-generated method stub return 0; } } }  | 
Results

Dear Risny your tutorial is a great usefull for the beginers :) Thank you.
ReplyDeleteAll the best