คำถามติดแท็ก notifydatasetchanged

5
ตัวอย่าง informDataSetChanged
ฉันพยายามที่จะใช้วิธีAndroid ApplicationการของฉันnotifyDataSetChanged()สำหรับArrayAdapterแต่มันไม่ทำงาน ฉันพบว่าเป็นคำตอบที่นี่ที่notifyDataSetChanged()ควรทำงานในเธรดหลัก แต่ไม่มีตัวอย่างสำหรับที่ ใครช่วยส่งตัวอย่างหรืออย่างน้อยลิงค์?!

11
informDataSetChange ไม่ทำงานจากอะแดปเตอร์ที่กำหนดเอง
เมื่อฉันเติมเงินListViewใหม่ฉันเรียกวิธีการเฉพาะจากAdapterไฟล์. ปัญหา : เมื่อฉันโทรupdateReceiptsListจากของฉันAdapterข้อมูลจะถูกรีเฟรช แต่ของฉันListViewไม่ได้แสดงถึงการเปลี่ยนแปลง คำถาม : ทำไมไม่ฉันListViewแสดงข้อมูลใหม่เมื่อฉันโทรnotifyDataSetChanged? อะแดปเตอร์ : public class ReceiptListAdapter extends BaseAdapter { public List<Receipt> receiptlist; private Context context; private LayoutInflater inflater; private DateHelpers dateH; public ReceiptListAdapter(Activity activity, Context mcontext, List<Receipt> rl) { context = mcontext; receiptlist = rl; Collections.reverse(receiptlist); inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE); dateH = new DateHelpers(); …

11
Android ListView ไม่รีเฟรชหลังจาก alertDataSetChanged
รหัส ListFragment ของฉัน public class ItemFragment extends ListFragment { private DatabaseHandler dbHelper; private static final String TITLE = "Items"; private static final String LOG_TAG = "debugger"; private ItemAdapter adapter; private List<Item> items; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.item_fragment_list, container, false); return view; …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.