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"));
}