我的应用程序中已经有此异常,但我想创建一个自定义对话框,这是我的异常:
10-11 01:41:49.420: E/AACPlayer(649): playAsync():
10-11 01:41:49.420: E/AACPlayer(649): java.lang.RuntimeException:
Cannot start native decoder
而不是显示这个java.lang.RuntimeException: Cannot start native decoder to person,像错误一样显示!!流已关闭。
我试过这样的事情:
try
{
aacPlayer.playAsync( getUrl());
}
catch(Exception e)
{
AlertDialog alertDialog = new AlertDialog.Builder(Activity.this).create();
alertDialog.setTitle("Error in radio");
alertDialog.setMessage("out of service");
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// here you can add functions
}
});
alertDialog.setIcon(R.drawable.icon);
alertDialog.show();
}
但没有运气它不显示自定义对话框有什么可以推荐我呢?
非常感谢。