该插件为读取应用提供了KJV圣经翻译
该插件允许其他Android应用显示圣经的King James版本。
应用开发人员可以将其与以下代码集成:
==在新活动中显示一段段落==
意图意图= new Intent(intent.action_view);
intent.setType(“ vnd.android.cursor.item/vnd.uk.co.tekkies.bible.passage”);
intent.putextra(“通道”,“希伯来书11”);
活动。开始(意图);
或者
==内容提供商接口==
字符串vassagexml =“ error”;
字符串[] row = new String [] {“ vassage”};
光标光标= getActivity()。getContentResolver()。查询(
uri.parse(“ content://uk.co.tekkies.plugin.bible.kjv/passage/” + vassage),行,“,row,”,“”);
if(cursor.movetofirst()){
passagexml = cursor.getString(cursor.getColumnIndex(“ passage”));
}
阅读更多信息