这个问题是关于当从 Google Play 加载应用程序时,将资产文件夹中的 HTML 内容加载到 Android 动态功能模块内的 WebView 组件中。你怎么能那样做?现在,当我的代码使用WebView.loadUrl
.
请注意,这个问题不是关于如何将 HTML 内容加载到主 Android 'app' 模块内的 WebView 中。它也不是关于如何让它在模拟器上本地运行 - 在动态功能模块中的模拟器上加载 HTML 内容时,加载 HTML 内容可以正常工作。
我的项目具有以下结构:
Top
- app (parent module)
| - src
| - ...
- module 1 (child module)
| - src
| - main
| - assets (html is under this folder)
| - java
| - org.example.fragment
| - WebFragment
所以模块 1 是一个 Android 功能模块,Fragment
它加载了一个android.webkit.WebView
应该加载资产的模块。但从 Google Play 加载应用程序时,无法加载 HTML 内容。
下面是模块 1 中的片段代码,它应该加载 HTML:
public class WebFragment extends Fragment {
protected static final String DEFAULT_LOCATION = "file:///android_asset/";
protected WebView gameView;
private static final String TAG = "MindGymWebFragment";
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
SplitCompat.install(getContext());
View v = inflater.inflate(R.layout.fragment_web_mindgym, container, false);
try {
String gameToOpen = this.getArguments().getString("gameToOpen");
gameView = v.findViewById(R.id.memory_game_view);
setupSettings();
boolean isMemory = "Memory".equals(gameToOpen);
boolean isDestress = "DeStress".equals(gameToOpen);
if (isMemory) {
gameView.loadUrl(DEFAULT_LOCATION + "memory/memory.html");
} else if (isDestress) {
gameView.loadUrl(DEFAULT_LOCATION + "breathe/breathing.html");
}
MainActivity mainActivity = (MainActivity) getActivity();
mainActivity.unselectHomeTab();
if (isMemory || isDestress) {
mainActivity.setDailyOnABar(getString(org.brahmakumaris.beezone.R.string.mind_gym));
}
} catch (Exception e) {
Log.e(TAG, "Cannot initializa game", e);
}
return v;
}
protected void setupSettings() {
WebSettings settings = gameView.getSettings();
settings.setLoadWithOverviewMode(true);
settings.setUseWideViewPort(true);
settings.setAllowFileAccess(true);
settings.setAllowContentAccess(true);
settings.setAllowFileAccessFromFileURLs(true);
settings.setAllowUniversalAccessFromFileURLs(true);
settings.setBlockNetworkImage(false);
settings.setBlockNetworkLoads(false);
settings.setLoadsImagesAutomatically(true);
settings.setDomStorageEnabled(true);
settings.setLoadWithOverviewMode(true);
settings.setJavaScriptEnabled(true);
settings.setMediaPlaybackRequiresUserGesture(false);
}
@Override
public void onDestroy() {
gameView.destroy();
gameView = null;
super.onDestroy();
}
}
那么:如何从 Google Play 提供的动态功能模块加载 HTML?
更新 1:如果将 html 资产复制到app/src/main/assets
文件夹中,上面的代码将起作用——但这显然不是我们想要的。从 Google Play 下载模块时,模块 1 的 webview 应该能够访问模块 1 的资产文件夹。