我尝试使用下面的代码为我的电话应用程序显示一个 AlertDialog。当我的应用程序运行到入口点时,AlertDialog 没有向用户显示。
手机屏幕变成了深色被锁定。但是,我可以按手机的后退按钮让应用程序进入下一步,就像按下取消功能的行为一样。
AlertDialog 似乎隐藏在应用程序背景中。我想把它称为前台。
怎么做 ?
顺便说一句,LogCat 上没有显示错误消息。
有人可以指出我错在哪里或我可以提供什么其他信息吗?
谢谢 !
AlertDialog.Builder builder1 = new AlertDialog.Builder(Mainx.this);
builder1.setTitle(getResources().getString(R.string.str_sel_player));
LayoutInflater inflater = LayoutInflater.from(this);
View functionListView = inflater.inflate(R.layout.dialog_pickitem_action,null);
builder1.setView(functionListView);
mlistView = (ListView) functionListView.findViewById(R.id.m_functions_listview);
mlistView.setAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, mPlayers));
selDialog = builder1.create();
selDialog.show();