Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想让用户通过单击按钮访问我的网站。
但是,我希望应用程序打开谷歌浏览器或其他外部网络浏览器来打开网站,而不是使用 WebView 加载 url。
我怎样才能做到这一点?
你可以用ACTION_VIEW Intent——
ACTION_VIEW
Intent
Uri myUri = Uri.parse("http://www.whereever.com/"); Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(myUri); startActivity(intent);
如果您想在单击按钮时执行此操作,则需要将其放入onClick您的onClickListener.
onClick
onClickListener