質問

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.

役に立ちましたか?

解決

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/

他のヒント

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);

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top