如何做到这一点,以使用户按下图像按钮并获得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链接时会发生什么的网页,而只是显示该网页已被按下。
答案 0 :(得分:1)
如果您通过意图调用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;
}
}
答案 1 :(得分:0)
TEMPLATE_CONTEXT_PROCESSORS = (
'customer.context_processors.wishlists',
)
这将启动一个新活动。如果您不想启动新活动,但希望在当前活动中显示该网址,则需要在布局中为当前活动添加一个Web视图,然后在该Web视图中打开该URL,而不是调用startActivity。>
答案 2 :(得分:0)
如果您不想在外部浏览器中打开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);