Furqi..
11
你必须像这样给出该文件的路径.
String extStorageDirectory = Environment.getExternalStorageDirectory()
.toString() + "/folder_name";
File directory = new File(extStorageDirectory);
File fileInDirectory = new File(directory,file_name.html);
//Read text from file
StringBuilder html_text = new StringBuilder();
try {
BufferedReader br = new BufferedReader(new FileReader(fileInDirectory));
String line;
while ((line = br.readLine()) != null) {
html_text.append(line);
html_text.append('\n');
}
}
catch (IOException e) {
//You'll need to add proper error handling here
}
然后使用此HTML代码进行编辑
String message =""+""+"text in white"+ "
" +""+""+" text in blue color "+"";
webview.loadData(message, "text/html", "utf8");