Android About page -


how open settings>about page programmaticlly in android.

you can open using intent

intent aboutphone = new intent(settings.action_device_info_settings);  startactivity(aboutphone); 

as in android there many settings classes , here :

android.provider.settings 

Comments

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -