Question

i am trying to make an app which is micro size, and when we click on app icon installed on our device it simple opens the web browser of android(default by android) wit a fixed url and on full screen headers padding title bar of the browser should be hidden,, kindly help me out with this thing how can i make such.

Was it helpful?

Solution

There are many cross platform developement tools which lets u run a web app built using HTML,Javascript,css as a native application.PhoneGap is one such tool .you can find more info here http://phonegap.com/

OTHER TIPS

Check this

String packageName = "com.android.browser"; String className = "com.android.browser.BrowserActivity"; Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse(entries.get(arg2).getLink())); intent.addCategory(Intent.CATEGORY_LAUNCHER); intent.setClassName(packageName, className); startActivity(intent); overridePendingTransition(R.anim.slide_in_right, R.anim.slide_out_right);

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top