KJV Bible Plugin -
該插件為閱讀應用程式提供 KJV 聖經翻譯
該插件允許其他 Android 應用程式顯示 King James 版本聖經中的聖經段落。
應用程式開發人員可以將其與以下程式碼整合:
== 在新活動中顯示一段內容 ==
意圖intent = new Intent(Intent.ACTION_VIEW);
Intent.setType("vnd.android.cursor.item/vnd.uk.co.tekkies.bible.passage");
intent.putExtra("通道","希伯來書 11");
活動.startActivity(意圖);
或者
==內容提供者介面==
字串passageXml =“錯誤”;
String[] row = new String[] { "頻道" };
遊標cursor = getActivity().getContentResolver().query(
Uri.parse("content://uk.co.tekkies.plugin.bible.kjv/passage/" + 段落), row, "", row, "");
if (cursor.moveToFirst()) {
PassageXml = Cursor.getString(cursor.getColumnIndex("passage"));
}