نقل قول نوشته شده توسط MMNNNM مشاهده تاپیک
منظورت رو نمیفهمم ولی این کد Adapter منه
تو این Adapterمن به آیتم های لیست ویو settextcolor و settextSizeو... هم میدم که الان از کد ها برداشتم
کارم خیلی گیره

public Myadapter(Context context, ArrayList<item> itemsArrayList) {

super(context, R.layout.item_tarfand, itemsArrayList);

this.context = context;
this.itemsArrayList = itemsArrayList;
}


@Override
public View getView(int position, View convertView, ViewGroup parent) {

// 1. Create inflater
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE) ;

// 2. Get rowView from inflater
View rowView = inflater.inflate(R.layout.item_tarfand, parent, false);

// 3. Get the two text view from the rowView
Button BtnTarfandList = (Button) rowView.findViewById(R.id.btnListTarfand);

// 4. Set the text for textView

BtnTarfandList.setText(itemsArrayList.get(position ).getTitle());

// 5. retrn rowView
return rowView;

}



مشکل از همین button است.از طریق xml قابلیت فکوس رو برای button غیر فعال کنید.
android:focusable="false"