gpt4 book ai didi

android - 在 android 中,我的 facebook url 必须加载到 xml 页面中,而不是进入浏览器

转载 作者:行者123 更新时间:2023-11-30 03:00:11 24 4
gpt4 key购买 nike

我是这个 android 的新手,我已经编写了在我的 android 应用程序中使用 facebook 的代码。

为了使用 facebook,我选择了一个苹果水果沙拉的 url

https://www.facebook.com/applefruitsalads

我可以访问 android 应用程序中的链接,但它必须在 xml 页面中打开,而不是转到浏览器然后加载上述 URL。

我不希望我的应用程序在浏览器中加载它,否则我需要它在 xml 文件中。

还有一件事我在 xml 页面中使用了 webview,这样它将填充给定到 webview 的 url

我不知道该怎么做所以任何人都可以帮助我。我已经粘贴了下面的代码

enter image description here

fbview.xml

<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fb_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />

FbActivity.java

package com.coded.sandeep;
import android.os.Bundle;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.view.Menu;
import android.webkit.WebSettings;
import android.webkit.WebView;

@SuppressLint("SetJavaScriptEnabled")
public class FbActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

WebView webView = (WebView) findViewById(R.id.fb_view);
WebSettings settings = webView.getSettings();
settings.setJavaScriptEnabled(true);
webView.loadUrl("https://www.facebook.com/applefruitsalads");
// i dont want to direct to browser instead it has to pop up in xml file only

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.facebook, menu);
return true;
}}

我也在 list 文件中添加了语句 enter image description here

最佳答案

package com.coded.sandeep;
import android.os.Bundle;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.view.Menu;
import android.webkit.WebSettings;
import android.webkit.WebView;

public class FbActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

WebView mWebview = (WebView) findViewById(R.id.fb_view);
mWebview = (WebView) findViewById(R.id.webView1);
WebSettings settings = mWebview.getSettings();
settings.setJavaScriptEnabled(true);
mWebview.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
progressBar = ProgressDialog.show(FbActivity.this, "", "Loading...",
true);
mWebview.setWebViewClient(new WebViewClient() {
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}

public void onPageFinished(WebView view, String url) {
if (progressBar.isShowing()) {
progressBar.dismiss();
}
}

public void onReceivedError(WebView view, int errorCode,
String description, String failingUrl) {
AlertDialog alert = new AlertDialog.Builder(FbActivity.this)
.create();
alert.setTitle("No connection"));
alert.setIcon(R.drawable.ic_launcher);
alert.setCancelable(false);
alert.setMessage("No connection"));
alert.setButton("OK", new DialogInterface.OnClickListener() {

@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();

}
});
alert.show();
}
});
mWebview.loadUrl("https://www.facebook.com/applefruitsalads");
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.facebook, menu);
return true;
}}

不要忘记在 Manifest 中添加 Internet Permission

我希望这能奏效

关于android - 在 android 中,我的 facebook url 必须加载到 xml 页面中,而不是进入浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22651995/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com