我知道這可能是很簡單的,但...機器人:一個ListEntry類,處理ListView項單擊
我根據我的Android應用程序的answer處理列表視圖點擊。下面是使用一個ListEntry類
ListEntry entry = (ListEntry) parent.getItemAtPosition(position);
但是Eclipse無法檢測這個類,並說「一個ListEntry不能被解析爲一個類型」 我谷歌「一個ListEntry」類,不能代碼找到關於這個的所有信息,那麼我的錯誤在哪裏?
對不起英文不好。 感謝
編輯: 這裏是我的onLoadFinished法」
@Override
public void onLoadFinished(Loader<Cursor> arg0, Cursor arg1) {
// TODO Auto-generated method stub
arg1.moveToFirst();
simpleCursorAdapter = new SimpleCursorAdapter(
getApplicationContext(),
android.R.layout.simple_list_item_1,
arg1,
new String[] { "wname" },
new int[] { android.R.id.text1 },
CursorAdapter.IGNORE_ITEM_VIEW_TYPE);
listview.setAdapter(simpleCursorAdapter);
simpleCursorAdapter.swapCursor(arg1);
}
我相信ListEntry中的答案是一個用於存儲數據的自定義類。您將List(ArrayList)傳遞給附加到ListView的適配器。你到底在找什麼?填充列表?或獲得點擊列表項目? – Keya
ListEntry是一個自定義類,用於顯示您的列表項。 – IPL10
@IPL感謝您的回答 – Amir