我正在尝试在Android应用程序中加载 LINE 联系人列表,并在点击时打开包含特定联系人的聊天屏幕。我可以打开聊天屏幕,但是我必须手动点击联系人才能与该联系人开始聊天。我已经从https://developers.line.me/en/docs/line-login/using-line-url-scheme/阅读了可用的信息。但这并没有帮助我。另外,我也找不到线路联系人列表。运行程序时,我得到一个空字符串。
Cursor cursor = getContentResolver().query(
RawContacts.CONTENT_URI,
new String[] { RawContacts.CONTACT_ID, RawContacts.DISPLAY_NAME_PRIMARY },
RawContacts.ACCOUNT_TYPE + "= ?",
new String[] { "jp.naver.line.android" },
null);
ArrayList<String> LineContacts = new ArrayList<String>();
int contactNameColumn = cursor.getColumnIndex(RawContacts.DISPLAY_NAME_PRIMARY);
while (cursor.moveToNext())
{
LineContacts.add(cursor.getString(contactNameColumn));
}
cursor.close();
Log.d(TAG,LineContacts.size());
使用意图打开线路应用。
String sendText = "line://nv/chat";
Intent intent = new Intent();
try {
intent = Intent.parseUri(sendText, Intent.URI_INTENT_SCHEME);
} catch (URISyntaxException e) {
e.printStackTrace();
}
startActivity(intent);
答案 0 :(得分:2)
根据文档,它看起来不可能。
以下是LINE应用程序可用的URL方案的列表:
有关更多详细信息,请检查here
答案 1 :(得分:0)
相应的新文档是可能的...
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setData(Uri.parse("https://line.me/R/oaMessage/" + "@lineId/"+"?"+"Hi%20there%21"));
context.startActivity(intent);
指https://developers.line.biz/en/docs/line-login/using-line-url-scheme/#sending-text-messages