gpt4 book ai didi

android - 在Android中使用webview postUrl打开浏览器后获取白屏

转载 作者:太空狗 更新时间:2023-10-29 15:08:05 26 4
gpt4 key购买 nike

当我尝试在 webView 上 postUrl 前 3-4 秒时,我得到白屏,然后浏览器打开。如果我按回只有白屏出现。如果我再次按回只有它出现 Activity 。那么我将如何删除这个白屏。这是我的代码。

      import org.apache.http.util.EncodingUtils;
import com.google.analytics.tracking.android.EasyTracker;
import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.webkit.CookieManager;
import android.webkit.CookieSyncManager;
import android.webkit.WebView;

public class HtmlViewerActivity extends Activity {
WebView wv;
String payUrl;
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.web_viewer);

wv = (WebView) findViewById(R.id.webid);

// use cookies to remember a logged in status
CookieSyncManager.createInstance(this);
CookieSyncManager.getInstance().startSync();

CookieManager cookieManager = CookieManager.getInstance();
cookieManager.removeAllCookie();

// getting data from other Activity using bundle

Bundle bundle = new Bundle();
bundle = getIntent().getExtras();
payUrl = bundle.getString("payUrl");

wv.setKeepScreenOn(true);
wv.getSettings().setDomStorageEnabled(true);
wv.getSettings().setBuiltInZoomControls(true);

byte[] post = EncodingUtils.getBytes(payUrl, "BASE64");
wv.postUrl("http://syntheverest.collasapp/app/get_details.php", post);

}

@Override
public void onBackPressed() {
// TODO Auto-generated method stub
if (wv.canGoBack())
wv.goBack();
else
super.onBackPressed();

}
}

最佳答案

试试这个:(YourWebview).setBackgroundColor(0x00000000);

将您的网页 View 设置为透明。

关于android - 在Android中使用webview postUrl打开浏览器后获取白屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19851813/

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