Note that there are some explanatory texts on larger screens.

plurals
  1. POhow to get position of arraylist in own adapter
    primarykey
    data
    text
    <p>I want to set the position of the arraylist (items) into my own adapter of listview. </p> <pre><code> holder.txtViewTitle.setText(title.get(position)); </code></pre> <p>But I got the error. Please check the below code.</p> <p>also I got the error of the setImageResource.</p> <pre><code> holder.imgViewLogo.setImageResource(images[position]); </code></pre> <p>Thanks.</p> <pre><code>public class LazyAdapter extends BaseAdapter{ private activites context; private ArrayList&lt;String&gt; title; private String[] images; private LayoutInflater inflater; public LazyAdapter(activites activites,String[] img ,ArrayList&lt;String&gt; items) { super(); this.context = activites; this.title = items; this.images = img; } @Override public int getCount() { // TODO Auto-generated method stub return title.size(); } @Override public Object getItem(int position) { // TODO Auto-generated method stub return null; } @Override public long getItemId(int position) { // TODO Auto-generated method stub return 0; } public static class ViewHolder { ImageView imgViewLogo; TextView txtViewTitle; } @Override public View getView(int position, View convertView, ViewGroup parent) { // TODO Auto-generated method stub ViewHolder holder; if(convertView==null) { holder = new ViewHolder(); convertView = inflater.inflate(R.layout.activity_listitem, null); holder.imgViewLogo = (ImageView) convertView.findViewById(R.id.activity_list_logo); holder.txtViewTitle = (TextView) convertView.findViewById(R.id.activity_list_title); convertView.setTag(holder); } else holder=(ViewHolder)convertView.getTag(); holder.imgViewLogo.setImageResource(images[position]); holder.txtViewTitle.setText(title.get(position)); return convertView; } } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload