Top 10 Messaging Apps for Secure Communication
In a world where digital privacy is under constant threat, secure communication is no longer a luxury—it’s a necessity. From high-profile data breaches to everyday phishing attempts, the risks are […]
The getView() method of the class extending the BaseAdapter holds the state of the currently displayed view which is invalidated when scrolling the listview. So, in order to avoid this problem, proceed in the following manner.
• Create a nested class within the class (class which is extending BaseAdapter Class), namely, Viewholder.
• Declare all the views of an individual list item in this Viewholder Class.
• Create an object of this Viewholder class in the getView() method and initialize all the views declared in the Viewholder class using this object.
Example :
Activity activity;
publicclassViewHolder{
TextViewtextview;
CheckBoxcheckbox;
}
public View getView(finalint position, View convertView, ViewGroup parent)
{
View vi=convertView;
LayoutInflaterinflater = activity.getLayoutInflater();
vi = inflater.inflate (R.layout.listitem, null);
ViewHolder item=newViewHolder();
item.textview = (TextView)vi.findViewById(R.id.textview1);
item.checkbox = (CheckBox)vi.findViewById(R.id.checkbox1);
vi.setTag(item);
return vi;
}
Implement this and check the state of the checkbox while scrolling the listview.
Jun 19th, 2025
In a world where digital privacy is under constant threat, secure communication is no longer a luxury—it’s a necessity. From high-profile data breaches to everyday phishing attempts, the risks are […]
Jun 5th, 2025
The demand for custom mobile banking app development is soaring as businesses strive to meet evolving consumer expectations. Today, customers expect seamless, secure, and feature-rich banking experiences that let them […]
Jun 3rd, 2025
This article explores why application modernisation is no longer optional for enterprises. It unpacks how ageing apps are becoming serious roadblocks, the transformative business outcomes of modernising, and the urgent […]