这是我的代码。
Intent i=new Intent();
try {
i.setClassName(this, (Settings.ACTION_ADD_ACCOUNT));
startActivity(i);
}
catch(Exception e) {
e.printStackTrace();
}
我收到空指针异常。请帮忙
这是我的代码。
Intent i=new Intent();
try {
i.setClassName(this, (Settings.ACTION_ADD_ACCOUNT));
startActivity(i);
}
catch(Exception e) {
e.printStackTrace();
}
我收到空指针异常。请帮忙
尝试这个
Intent intent=new Intent(Settings.ACTION_SYNC_SETTINGS);
startActivity(intent);
添加 gmail
您可以使用AccountManager。
AccountManager acm = AccountManager.get(getApplicationContext());
acm.addAccount("com.google", null, null, null, thisclassname.this,
null, null);