为了账号安全,请及时绑定邮箱和手机立即绑定

用户按图像按钮打开 URL,但不显示新窗口

用户按图像按钮打开 URL,但不显示新窗口

RISEBY 2022-09-28 16:13:58
如何使用户按下图像按钮并在不打开新窗口的情况下按下URL链接?private class HandleClick implements View.OnClickListener {      public void onClick(View arg0) {        if(arg0.getId()==R.id.imageButton){            ((TextView) findViewById(R.id.textView2)).setText("Pressed: " + ++howManyClicks1);            Uri uri = Uri.parse("https://abr.se/happyeno/?get=happyeno_svar_put&svar_id=1");            Intent intent = new Intent(Intent.ACTION_VIEW, uri);            startActivity(intent);        }        else if (arg0.getId()==R.id.imageButton1){            ((TextView) findViewById(R.id.textView3)).setText("Pressed: " + ++howManyClicks2);            Uri uri = Uri.parse("https://abr.se/happyeno/?get=happyeno_svar_put&svar_id=2");            Intent intent = new Intent(Intent.ACTION_VIEW, uri);            startActivity(intent);        }        else if (arg0.getId()==R.id.imageButton2){            ((TextView) findViewById(R.id.textView5)).setText("Pressed: " + ++howManyClicks3);            Uri uri = Uri.parse("https://abr.se/happyeno/?get=happyeno_svar_put&svar_id=3");            Intent intent = new Intent(Intent.ACTION_VIEW, uri);            startActivity(intent);        }        else if (arg0.getId()==R.id.imageButton4){            ((TextView) findViewById(R.id.textView6)).setText("Pressed: " + ++howManyClicks4);            Uri uri = Uri.parse("https://abr.se/happyeno/?get=happyeno_svar_put&svar_id=4");            Intent intent = new Intent(Intent.ACTION_VIEW, uri);              startActivity(intent);        }我希望用户在不打开新窗口的情况下按下图像按钮和URL,-澄清:我不想向用户显示当他/她按下URL链接时会发生什么的网页,只是它已被按下。
查看完整描述

3 回答

?
萧十郎

TA贡献1815条经验 获得超13个赞

如果您通过意图调用URL,它将打开浏览器(意味着新选项卡),而不是这样,您可以使用Web视图在应用程序内加载URL


在 Xml 布局中:


    <WebView  xmlns:android="http://schemas.android.com/apk/res/android"

     android:id="@+id/webview"

     android:layout_width="fill_parent"

      android:layout_height="fill_parent"

     />

在“活动”中:


   WebView browser = (WebView) findViewById(R.id.webview);


        String url = "http://www.google.com";

        browser .setWebViewClient(new MyBrowser());

        browser .getSettings().setLoadsImagesAutomatically(true);

        browser .getSettings().setJavaScriptEnabled(true);

        browser .setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);

        browser .loadUrl(url);


 private class MyBrowser extends WebViewClient {

  @Override

  public boolean shouldOverrideUrlLoading(WebView view, String url) {

     view.loadUrl(url);

     return true;

  }

 }


查看完整回答
反对 回复 2022-09-28
?
偶然的你

TA贡献1841条经验 获得超3个赞

如果不想在外部浏览器中打开 URI,则应使用WebView


您可以添加到布局中WebView


<WebView

    android:id="@+id/webView"

    android:layout_width="match_parent"

    android:layout_height="match_parent">

</WebView>

然后在你的活动中:


private WebViewClient webViewClient = new WebViewClient() {

    @Override

    public void onReceivedError(WebView view, WebResourceRequest request, WebResourceError error) {

        Toast.makeText(view.getContext(), error.getDescription(), Toast.LENGTH_SHORT).show();

    }

};

按 ID 查找您的地址并设置要打开的地址WebView


webView.setWebViewClient(webViewClient);

webView.loadUrl(yourUrl);


查看完整回答
反对 回复 2022-09-28
?
哆啦的时光机

TA贡献1779条经验 获得超6个赞

Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

这将启动一个新活动。如果不想启动新活动,但希望该 URL 显示在当前活动中,则需要在布局中添加一个 web 视图,并在 web 视图中打开该 url,而不是调用 startActivity。


查看完整回答
反对 回复 2022-09-28
  • 3 回答
  • 0 关注
  • 116 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信