我注意到在 catch 块中使用 toast 时不会显示它。有谁知道在捕获异常时如何显示敬酒?一个例子:
try {
// try to open a file
} catch (FileNotFoundException e) {
Toast.makeText(this, R.string.txt_file_not_found, Toast.LENGTH_LONG);
return; // cancel processing
}
我注意到在 catch 块中使用 toast 时不会显示它。有谁知道在捕获异常时如何显示敬酒?一个例子:
try {
// try to open a file
} catch (FileNotFoundException e) {
Toast.makeText(this, R.string.txt_file_not_found, Toast.LENGTH_LONG);
return; // cancel processing
}