我正在使用 ListView 列出文件夹中的所有图片,然后在 onListItemClick 中启动另一个活动,将名称传递给它并在下一个活动的 webview 中显示图片。即使图片在文件夹中并且 ListView 正确读取它,WebView 也不会显示它,有什么想法吗?
这是我的代码:
public class Dives extends ListActivity {
private File currentDir;
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
currentDir = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "DivePlanner" + File.separator);
FilenameFilter filter = new FilenameFilter() {
public boolean accept(File dir, String name) {
return (name.endsWith("png") || name.endsWith("jpg") || name.endsWith("jpeg") || name.endsWith("PNG") || name.endsWith("JPG") || name.endsWith("JPEG"));
}
};
String[] values = currentDir.list(filter);
if (values == null)
{
Toast.makeText(getApplicationContext(), "Error", 500).show();
}
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, values);
setListAdapter(adapter);
getListView().setBackgroundDrawable(getResources().getDrawable(R.drawable.diver));
}
@Override
protected void onListItemClick(ListView list, View v, int position, long id) {
list.setBackgroundDrawable(getResources().getDrawable(R.drawable.diver));
String item = (String) getListAdapter().getItem(position);
Intent myIntent = new Intent(this, DisplayDive.class);
Bundle B = new Bundle();
B.putString("jmeno", item);
myIntent.putExtras(B);
this.startActivity(myIntent);
}
}
显示文件并在 OnClick 中启动另一个显示文件的活动:
public class DisplayDive extends Activity {
/** Called when the activity is first created. */
WebView myWebView;
String jmeno;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.table);
Bundle extras = this.getIntent().getExtras();
if(extras!=null) jmeno = extras.getString("jmeno");
myWebView = (WebView)findViewById(R.id.myWebView);
myWebView.setInitialScale(100);
myWebView.getSettings().setBuiltInZoomControls(true);
myWebView.loadUrl(Environment.getExternalStorageDirectory().getAbsolutePath()+ File.separator + "DivePlanner" + File.separator + jmeno);
}
}
WebView 总是以页面不可用/mnt/sdcard/DivePlanner/file_name.jpeg 结束
还有一件事:我真的不明白为什么手机内存中的文件夹,不应该在SD卡上吗?(我将一些 png 从我的应用程序导出到此文件夹,令我惊讶的是,该文件夹不是在 SD 卡上创建的,而是在手机上创建的)