AlertDialog.Builder load_alert = new AlertDialog.Builder(this);
File list = new File("data/data/project/databases/");
if(!list.exists() || !list.isDirectory()){
return;
}
String [] fileList = list.list();
load_alert.setMessage("Please select");
load_alert.setItems(fileList, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int item) {
Toast toast = Toast.makeText(getApplicationContext(), "test", Toast.LENGTH_LONG);
toast.show();
}
});
load_alert.show();
這應該顯示我的數據庫文件夾的內容到alertdialog。我已經檢查了fileList數組,並且它正在被填充。由於某些原因,它只是不通過setItems顯示。有任何想法嗎?AlertDialog不顯示文件列表
我剛剛有同樣的問題.. API文檔真的應該同時指定調用之間的差異。謝謝! – Andre
謝謝,你救了我的命! –