実行可能メソッド(またはこの特定のメソッドを使用)でリターンを作成する方法がわかりません。私は間違った考えを持っているかもしれません(?)。何か助けはありますか?thnx!
*これはこの投稿から継続/関連しています。しかし、それ自体がQになる可能性があると考えました。
アクティビティonCreate:
Runnable doIfMounted = orderASC_Label();
StorageStateChecker.performExternalStorageOperation(doIfMounted );
ランナブル:
/**
* -- Default List Order (Ascending)
* =====================================================================
* @return
**/
public Runnable orderASC_Label() {
Cursor databaseCursor = db.rawQuery(
"SELECT * FROM AC_list ORDER BY `label` ASC", null);
Adapter_AC databaseListAdapter = new Adapter_AC(this,
R.layout.list_item, databaseCursor, new String[] { "label",
"title", "description", "gotoURL" }, new int[] {
R.id.label, R.id.listTitle, R.id.caption, R.id.dummy });
databaseListAdapter.notifyDataSetChanged();
this.setListAdapter(databaseListAdapter);
return /*null; <-- What do I do here to make this runnable */
}
StorageStateCheckerクラス:
public class StorageStateChecker {
public static boolean performExternalStorageOperation(Runnable doIfMounted) {
if (android.os.Environment.getExternalStorageState().equals(
android.os.Environment.MEDIA_MOUNTED)) {
if (doIfMounted != null) {
doIfMounted.run();
}
return true;
} else if (android.os.Environment.getExternalStorageState().equals(
android.os.Environment.MEDIA_UNMOUNTED)) {
//Alerts.sdCardMissing(this);
}
return false;
}
}