gpt4 book ai didi

android - flash 文件没有显示在屏幕上?

转载 作者:行者123 更新时间:2023-11-29 13:59:33 26 4
gpt4 key购买 nike

我正在使用 webview 控件在我的应用程序中显示 flash .swf 文件。 当我运行显示整个白色屏幕的应用程序屏幕时。

这是我的代码,

   public class flash extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

setContentView(R.layout.main);


String url ="file:///android_asset/beautiful.swf";
WebView webview = (WebView) findViewById(R.id.flash_webview);

webview.getSettings().setPluginsEnabled(true);
webview.getSettings().setAllowFileAccess(true);
webview.loadUrl(url);


}
}

并且xml文件包含webview控件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<WebView
android:id="@+id/flash_webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>

</RelativeLayout>

我还添加了 Android:hardwareAccelerated:"true" 在 list 文件中。

我仍然卡在白屏上。

请帮忙。

提前致谢。

最佳答案

您是否尝试过将 .swf 文件嵌入到 html 文件中并加载此 html?

关于android - flash 文件没有显示在屏幕上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10142445/

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