Android账户、位置服务设置
Android系统的Settings里面为用户提供了账户注册以及位置服务许可,我们要做的就是通过自己的Activity去调用系统资源来进行账户注册以及选择位置服务许可
解决:
1.Android账户设置:
首先推荐一个Android SDK包下的工具Hierarchy Viewer(可视化调试工具,可以很方便地在开发者设计,调试和调整界面时,提高用户的开发效率)
通过Hierarchy View发现Android系统跳转到的账户注册的类为com.android.email.activity.setup.AccountSetupBasics
如此,我们可以通过intent直接跳转到该页面,跳转个人账户注册代码如下:
Intent pIntent = new Intent();
pIntent.setClassName("com.android.email", "com.android.email.activity.setup.AccountSetupBasics");
pIntent.putExtra("FLOW_MODE", 0);
startActivity(pIntent);
跳转企业账户注册如下:
Intent cIntent = new Intent();
cIntent.setClassName("com.android.email", "com.android.email.activity.setup.AccountSetupBasics");
cIntent.putExtra("FLOW_MODE", 1);
startActivity(cIntent);
注:当AccountSetupBasics检测到标识FLOW_MODE为0,显示个人账户注册页面,为1显示企业账户注册
2.位置服务设置:
分析源码发现,处理Google位置服务许可设置的类为:Settings->LocationSettings
检测系统当前位置服务许可情况:
private void updateLocationToggles() {
ContentResolver res = getContentResolver();
boolean gpsEnabled = Settings.Secure.isLocationProviderEnabled(res,LocationManager.GPS_PROVIDER);
google1_checkbox.setChecked(Settings.Secure.isLocationProviderEnabled(res, LocationManager.NETWORK_PROVIDER));
google2_checkbox.setChecked(gpsEnabled);
if (mAssistedGps != null) {
mAssistedGps.setChecked(Settings.Secure.getInt(res,
Settings.Secure.ASSISTED_GPS_ENABLED, 2) == 1);
mAssistedGps.setEnabled(gpsEnabled);
}
}
设置Google位置服务许可:
google1_checkbox = (CheckBox) findViewById(R.id.google1_checkbox);
google1_checkbox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// TODO Auto-generated method stub
if(isChecked){
Settings.Secure.setLocationProviderEnabled(getContentResolver(),
LocationManager.NETWORK_PROVIDER, google1_checkbox.isChecked());
}else{
Settings.Secure.setLocationProviderEnabled(getContentResolver(),
LocationManager.NETWORK_PROVIDER, false);
}
}
});
注:此为Google的位置服务
google2_checkbox = (CheckBox) findViewById(R.id.google2_checkbox);
google2_checkbox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// TODO Auto-generated method stub
if(isChecked){
boolean enabled = google2_checkbox.isChecked();
Settings.Secure.setLocationProviderEnabled(getContentResolver(),
LocationManager.GPS_PROVIDER, enabled);
}else{
boolean enabled = false;
Settings.Secure.setLocationProviderEnabled(getContentResolver(),
LocationManager.GPS_PROVIDER, enabled);
}
}
});
注:此为GPS卫星