我是 android 的新开发人员。我想创建一个简单的应用程序,我将在其中单击图标,而不是在浏览器中打开我的网站。
有人可以建议我该怎么做
创建android项目在主布局中添加WebView附加到代码中的webview,然后加载url
使用 WebView 并参考webview 的链接
@Override
public boolean onOptionsItemSelected(MenuItem item) {
super.onOptionsItemSelected(item);
switch (item.getItemId()) {
case android.R.id.home:
Intent open = new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.google.com"));
startActivity(open);
return true;
}
return false;
}