How to make condition inside getView of Custom BaseAdapter
- by user1501150
I want to make a Custom ListView with Custom BaseAdapter, where the the status=1,I want to show a CheckBox, and else I want to show a textView..
My given condition is:
if (NewtheStatus == 1) {
alreadyOrderText
.setVisibility(TextView.GONE);
}
else{
…