アプリケーションでLoaderManagerの利点を使用できるように、独自のカスタム Androidローダーを実装しようとしています (アクティビティとフラグメントのライフサイクルによるデータのロードの分離)。
私は最初にAsyncLoaderからサブクラス化することを検討しましたが、実際には AsyncTask にデータをロードする必要はありません(これはAsyncLoaderが内部で行うことです)。私の場合の基礎となるデータは、ネイティブ ライブラリからのデータ/サンプルです。これらのサンプルは、アプリケーションに対して完全に非同期のライブラリにキャッシュされるため、別のスレッド内でこのネイティブ キャッシュを反復処理する必要はありません。
私のカスタムローダーがどのように見えるかは、多かれ少なかれ次のとおりです。
public class TestSampleListLoader extends Loader<List<TestSample>> {
private static final String TAG = "TestSampleListLoader";
private NativeLibFactory mNativeLib = null;
private SampleReader<TestSample> mTestSampleReader;
private TestSampleListener mTestSampleSampleListener;
private List<TestSample> mTestSampleList;
public TestSampleListLoader(Context context) {
super(context);
Log.i(TAG, "TestSampleListLoader constructor!!!");
}
@Override
public void deliverResult(List<TestSample> testSamples) {
Log.i(TAG, "deliverResult(data) " + testSamples.size());
super.deliverResult(testSamples);
}
@Override
public boolean isStarted() {
Log.i(TAG, "isStarted()");
return super.isStarted();
}
@Override
protected void onStartLoading() {
Log.i(TAG, "onStartLoading()");
super.onStartLoading();
mTestSampleList = new ArrayList<TestSample>();
if (null == mNativeLib) {
initNativeLib();
}
}
@Override
public void forceLoad() {
Log.i(TAG, "forceLoad()");
super.forceLoad();
}
@Override
protected void onForceLoad() {
Log.i(TAG, "onForceLoad()");
super.onForceLoad();
mTestSampleList.clear();
for (TestSample testSample : mTestSampleReader) {
mTestSampleList.add(testSample);
}
Log.i(TAG, "forceLoad(deliverResult) " + mTestSampleList.size());
deliverResult(mTestSampleList);
}
@Override
protected void onReset() {
Log.i(TAG, "onReset()");
mTestSampleList.clear();
if (null != mTestSampleReader) {
mTestSampleReader.close();
mTestSampleReader = null;
}
if (null != mNativeLib) {
mNativeLib.close();
mNativeLib = null;
}
super.onReset();
}
@Override
public void onContentChanged() {
Log.i(TAG, "onContentChanged()");
super.onContentChanged();
}
private void initNativeLib() {
Log.i(TAG, "initNativeLib()");
NativeLibAndroid.initNativeLib(getContext().getApplicationContext(), new NativeLibConnectionListener() {
@Override
public void onNativeLibReady(NativeLibFactory NativeLib) {
Log.d(TAG, "onNativeLibReady!!!");
mNativeLib = NativeLib;
mTestSampleSampleListener = new TestSampleListener();
mTestSampleReader = mNativeLib.createSampleReader(TestSample.class, mTestSampleSampleListener);
}
});
}
public class TestSampleListener implements SampleReaderListener {
@Override
public void onUpdate() {
Log.i(TAG, "TestSampleListener.onUpdate() => onContentChanged");
TestSampleListLoader.this.onContentChanged();
}
}
}
Fragmentを使用して、 ArrayAdapterを使用してネイティブの日付サンプルを表示しています。
public class TestSampleListFragment extends ListFragment implements LoaderManager.LoaderCallbacks<List<TestSample>> {
private static final String TAG = "TestSampleListFragment";
private static final boolean DEBUG = true;
// The Loader's id (this id is specific to the ListFragment's LoaderManager)
private static final int LOADER_ID = 1;
// We use a custom ArrayAdapter to bind application info to the ListView.
private TestSampleListAdapter mTestReaderAdapter;
@Override
public void onActivityCreated(Bundle savedInstanceSample) {
super.onActivityCreated(savedInstanceSample);
Log.i(TAG, "onActivityCreated()");
mTestReaderAdapter = new TestSampleListAdapter(getActivity());
setEmptyText("No testSamples");
setListAdapter(mTestReaderAdapter);
setListShown(false);
if (DEBUG) {
Log.i(TAG, "Calling initLoader()!");
if (getLoaderManager().getLoader(LOADER_ID) == null) {
Log.i(TAG, "Initializing the new Loader...");
} else {
Log.i(TAG, "Reconnecting with existing Loader (id '1')...");
}
}
// Initialize a Loader with id '1'. If the Loader with this id already
// exists, then the LoaderManager will reuse the existing Loader.
getLoaderManager().initLoader(LOADER_ID, null, this);
}
/**********************/
/** LOADER CALLBACKS **/
/**********************/
@Override
public Loader<List<TestSample>> onCreateLoader(int id, Bundle args) {
Log.i(TAG, "onCreateLoader(id) " + id);
// return new TestSampleListLoader(getActivity());
TestSampleListLoaderBis testSampleListLoaderBis = new TestSampleListLoaderBis(getActivity());
return testSampleListLoaderBis;
}
@Override
public void onLoadFinished(Loader<List<TestSample>> loader, List<TestSample> testSampleList) {
Log.i(TAG, "onLoadFinished(): " + testSampleList.size());
setListShown(false);
mTestReaderAdapter.setData(testSampleList);
if (isResumed()) {
Log.i(TAG, "onLoadFinished(isResumed)");
setListShown(true);
} else {
Log.i(TAG, "onLoadFinished(isNotResumed)");
setListShownNoAnimation(true);
}
}
@Override
public void onLoaderReset(Loader<List<TestSample>> arg0) {
Log.i(TAG, "onLoaderReset()");
mTestReaderAdapter.setData(null);
}
}
ADB Logcat トレース:
D/TestSampleListLoader(31166): onQeoReady!!!
I/TestSampleListLoader(31166): initQeo(mTestSampleReader): org.qeo.internal.SampleReaderImpl@41d29e68
I/TestSampleListLoader(31166): TestSampleListener.onUpdate() => onContentChanged
I/TestSampleListLoader(31166): onContentChanged()
I/TestSampleListLoader(31166): forceLoad()
I/TestSampleListLoader(31166): onForceLoad()
I/TestSampleListLoader(31166): forceLoad(deliverResult) 5
I/TestSampleListLoader(31166): deliverResult(data) 5
I/TestSampleListFragment(31166): onLoadFinished(): 5
I/TestSampleListAdapter(31166): setData(): 5
I/TestSampleListAdapter(31166): setData() for testSample: Test Sample #1
I/TestSampleListAdapter(31166): setData() for testSample: Test Sample #2
I/TestSampleListAdapter(31166): setData() for testSample: Test Sample #3 UPDATED
I/TestSampleListAdapter(31166): setData() for testSample: Test Sample #4
I/TestSampleListAdapter(31166): setData() for testSample: Test Sample #6 UPDATED
I/TestSampleListFragment(31166): onLoadFinished(isResumed)
I/TestSampleListLoader(31166): TestSampleListener.onUpdate() => onContentChanged
I/TestSampleListLoader(31166): onContentChanged()
I/TestSampleListLoader(31166): forceLoad()
I/TestSampleListLoader(31166): onForceLoad()
I/TestSampleListLoader(31166): forceLoad(deliverResult) 5
I/TestSampleListLoader(31166): deliverResult(data) 5
I/TestSampleListLoader(31166): TestSampleListener.onUpdate() => onContentChanged
I/TestSampleListLoader(31166): onContentChanged()
I/TestSampleListLoader(31166): forceLoad()
I/TestSampleListLoader(31166): onForceLoad()
I/TestSampleListLoader(31166): forceLoad(deliverResult) 6
I/TestSampleListLoader(31166): deliverResult(data) 6
問題は、ローダーがデータの変更を正しく通知されるようになったことですが、LoaderManager.LoaderCallbacks onLoadFinished()コールバックに正しく配信されるのは初めてです。方向の変更後、同じ話です。最初の結果はonLoadFinished()に正しく到着しますが、ネイティブ レイヤーからの後続の更新はフラグメントに到達しません。
私はEclipseデバッグ機能を使用して問題を追跡し、LoaderManagerソースで見つけました(447-453行目:このコードはLoader.deliverResult => onLoadComplete [=> callOnLoadFinished => fragment update OK]内からトリガーされます):
// Notify of the new data so the app can switch out the old data before
// we try to destroy it.
if (mData != data || !mHaveData) {
mData = data;
mHaveData = true;
if (mStarted) {
callOnLoadFinished(loader, data);
}
}
mData != dataは初めてのようです(この場合はmData == nullであるため)。この条件の後続のヒットでは、mData == データは常に (そしてデータ オブジェクト/配列はネイティブ入力で正しく成長しています)、これは非常に奇妙です。LoaderManagerImpl。_
この条件が true の場合にのみcallOnLoadFinishedへの必要な呼び出しが行われ、フラグメントと arrayAdapter に基になる変更について正しく通知されるため、この問題が私を妨げています。
カスタムローダーで私が間違っていることを誰かが知っていますか、それとも基礎となるデータセットが常に変化している場合、カスタムローダーは本当に良い解決策ではありませんか?
前もって感謝します!バート
Android カスタム ローダーに関する参考資料: http://www.androiddesignpatterns.com/2012/08/implementing-loaders.html