开发者

Android About page

How开发者_C百科 to open Settings>About page programmaticlly in Android.


You can open it by simply using an Intent

Intent aboutPhone = new Intent(Settings.ACTION_DEVICE_INFO_SETTINGS); 
startActivity(aboutPhone);

As in Android there are many Settings classes and here it would be :

android.provider.Settings


Looks like this is as close as you can get

Intent i = new Intent(Settings.ACTION_SETTINGS); 
startActivity(i);

Takes you to the main settings page. There doesn't seem to be an option to go to the About Phone page.


Short answer you can't .

Long answer all you can do is create an activity and show all the info from about page in your activity by problematically polling out the info from the system

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜