需要帮助从原生 Android 浏览器更改为 webview
好的,我已经完成了我的应用程序,我正在对其进行一些小的调整,有一件事是我更喜欢在 webview 而不是股票浏览器中启动我的网络链接......我已经尝试了很多事情,我不断收到错误,并且 Eclipse 不断启动调试透视图,我被困住了..
// XXXX.edu Button
Button XXXX_Button = (Button)findViewById( R.id.XXXX_Button );
XXXXXX_Button.setOnClickListener( new View.OnClickListener()
{
public void onClick(View v)
{
Uri uri = Uri.parse( "http://www.XXXXXX.edu/" );
startActivity( new Intent( Intent.ACTION_VIEW, uri ) );
}
});
Ok, so I've got my app done, and I'm working on minor tweaks for it, and one thing is I would prefer my web links to launch in webview instead of the stock browser... I've tried so many things and I keep getting errors and eclipse keeps launching the debug perspective and I'm stuck..
// XXXX.edu Button
Button XXXX_Button = (Button)findViewById( R.id.XXXX_Button );
XXXXXX_Button.setOnClickListener( new View.OnClickListener()
{
public void onClick(View v)
{
Uri uri = Uri.parse( "http://www.XXXXXX.edu/" );
startActivity( new Intent( Intent.ACTION_VIEW, uri ) );
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要扩展 WebViewClient,并启动其中的 url。
在你的布局 xml 中,
You need to extend WebViewClient, and launch the url within that.
And in your layout xml,