我试图创建一个类似于编程的弹出窗口。不幸的是,到目前为止我无法找到任何有用的资源来创建类似的弹出窗口。
答案 0 :(得分:1)
您可以使用Dialog
执行此操作 final Dialog dialog = new Dialog(context);
dialog.setContentView(R.layout.chat_custom_dialog);
dialog.setTitle("custom dialog");
dialog.show();
其中dialog.setContentView(R.layout.chat_custom_dialog);
将设置对话框的布局。
如果你想更新对话框的布局视图,你可以调用dialog.findViewById(id)
来获取布局内的视图,就像你在活动中做的一样