使警报对话框中的列表项不可见

时间:2012-02-24 14:31:06

标签: android android-listview android-dialog

我使用以下代码创建了一个警告对话框,并在其中插入了一个列表项

现在我想让这个项目不可见或在对话框中删除,这是一种方法吗

AlertDialog.Builder builder = new AlertDialog.Builder(this);
LayoutInflater factory = LayoutInflater.from(this);
final View directionEntryView = factory.inflate(R.layout.contact_dialog, null);                  

title.setText(contactStore.getContactName());
builder.setTitle(contactStore.getContactName());

/** Once I fill the item list , i want to make it invisible **/
builder.setItems(R.array.select_dialog_items, null);

项目清单如下

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string-array name="select_dialog_items" >
        <item>Command one</item>
        <item>Command two</item>
        <item>Command three</item>
        <item>Command four</item>
    </string-array>
</resources>

1 个答案:

答案 0 :(得分:0)

使用:title.setVisibility(View.GONE);