Within my app, is it possible to programatically change the Android browser\'s homepage url? If so, how can I accomplish this?
For example, if you run this popular
I hava a opinion: Maybe you can read the source code of Browser and find the code like this:
SharedPreferences prefs = mContext.getSharedPreferences(RECOVERY_PREFERENCES, Context.MODE_PRIVATE);
and get the SharedPreferences of Browser,then find the place to set homepage, change it. Is that possible?