このコードをフィールドに入力したいのですが、エラーが発生します
Account[] accounts = AccountManager.get(this).getAccounts();
for (Account account : accounts) {
// TODO: Check possibleEmail against an email regex or treat
// account.name as an email address only for certain account.type values.
String possibleEmail = account.name;
myWebView.setWebViewClient(new HelloWebViewClient());
setTitleColor(Color.GRAY); //the title bar color
myWebView.loadUrl("http://m.gmail.com");
myWebView.loadUrl("javascript: {document.getElementById('id_email').value ='"+possibleEmail+"'};");
}
このエラーが発生します
05-02 20:28:24.191:E / Web Console(1402):Uncaught TypeError:nullのプロパティ'value'を:1に設定できません
ご協力いただきありがとうございます