Back to project page RobolectricSample.
The source code is released under:
MIT License
If you think the Android project RobolectricSample listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.pivotallabs; //from w w w .j ava 2s. c om import android.widget.BaseAdapter; public class NotifyDataSetChangedCallbacks extends Callbacks{ private BaseAdapter adapter; public NotifyDataSetChangedCallbacks(BaseAdapter adapter) { this.adapter = adapter; } @Override public void onSuccess() { adapter.notifyDataSetChanged(); } }