0
我以這種方式通過故意添加信息到一個新的聯繫人:通過意向在新聯繫人中添加網站信息?
Intent intent = new Intent(Intents.Insert.ACTION);
intent.setType(ContactsContract.RawContacts.CONTENT_TYPE);
//...
intent.putExtra(Intents.Insert.NAME,"name");
intent.putExtra(ContactsContract.Intents.Insert.COMPANY,"company");
//...
startActivity(intent);
它工作正常,但我也想加入的網站信息。 什麼是「putExtra」中使用的「關鍵字」?
所有手機沒有聯繫羣衆演員的格式相同。幾乎沒有電子郵件和網站。所以很難對此進行分類 – 2014-09-23 10:42:40