3
我有3個元素,以我的申請: 1. UI(活性) 2.模型(類) 3.內容提供商 - 從數據庫傳遞ContentResolver有風險嗎?
提供數據爲了使模型類從訪問數據我需要的UI(活動),內容提供商將它傳遞一個ContentResolver的 - 這樣我可以創建模型類的光標:
cursor = mContentResolver.query(
MyobiliseData.CONTENT_URI_RUNSUMMARY, // The content URI of the words table
projection, // The columns to return for each row
selectionClause, // Selection criteria
selectionArgs, // Selection criteria
null); // The sort order for the returned rows
這是可以接受的做法,或者是有更好的方法來調用內容來自非活動類的提供者?
感謝
安東