0

我正在尝试创建一个类似于以编程方式的弹出窗口。不幸的是,到目前为止,我无法找到任何有用的资源来创建类似的弹出窗口。

Android 设计指南中的 PopupWindow

4

1 回答 1

1

你可以用对话框来做

    final Dialog dialog = new Dialog(context);
    dialog.setContentView(R.layout.chat_custom_dialog);
    dialog.setTitle("custom dialog");
    dialog.show();

wheredialog.setContentView(R.layout.chat_custom_dialog);将设置对话框的布局。

如果你想更新对话框的布局视图,你可以调用dialog.findViewById(id)来获取布局内部的视图,就像你在活动中所做的一样

于 2014-06-08T00:05:07.900 回答