我想在我的资产文件夹中创建一个包含2个html文件的应用: one.html和two.html 然后当我的edittext中的某个正文类型:one时,它会打开one.html。
这可能吗?我该怎么办呢。 我有这个代码,但我现在不知道如何处理它:
AssetManager assetManager = getAssets();
String[] files = null;
try {
files = assetManager.list("");
} catch (IOException e) {
Log.e("Error loading assets", e.getMessage());
}
for (String file : files) {
if (file.equals("one.html")) {
Open the html with webview
else if (file.equals("two.html")) {
Open the html with webview
}
}
那你现在如何用EditText
搜索我的资产文件夹?
答案 0 :(得分:0)
我不明白为什么你说“带有EditText
”,但是将文件放在资产文件夹中意味着你可以使用java的File
类来阅读它们。
只需google获取有关如何通过目录搜索文件的教程,以下是其中两个: