タグ付けされた質問 「notifydatasetchanged」

5
notifyDataSetChangedの例
私Android ApplicationのnotifyDataSetChanged()方法で使用しようとしていますArrayAdapterが、うまくいきません。 私はここで答えとして見つけました、それnotifyDataSetChanged()はメインスレッドで実行されるはずですが、その例はありませんでした。 誰かが例または少なくともリンクを送信できますか?

11
notifyDataSetChangeがカスタムアダプタから機能しない
を再作成するときに、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(); } @Override public int …

11
notifyDataSetChangedの後でAndroid ListViewが更新されない
My 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.