Android:AlertDialog中的ListView只显示一行

时间:2012-03-14 04:11:55

标签: android listview alertdialog android-alertdialog

我在AlertDialog中有一个ListView,我遇到的问题是ListView只显示一行,即使ListView中有多行。 AlertDialog似乎没有扩展。如何让它显示尽可能多的行?

提前致谢。

约翰尼

3 个答案:

答案 0 :(得分:2)

hiii Johnny

我看到你的问题然后我测试了很多演示,最后我得到了解决方案

这里我可以放置对你有帮助的链接,你可以测试它们

http://android-codes-examples.blogspot.in/2011/03/how-to-display-alertdialog-and.html

答案 1 :(得分:0)

final CharSequence [] items = {“Foo”,“Bar”,“Baz”};

    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setTitle("Make your selection");
    builder.setItems(items, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int item) {
             // Do something...
        }
    });
    AlertDialog alert = builder.create();

    alert.show();

答案 2 :(得分:0)

请在警告对话框中查看以下帖子列表视图:link