2

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

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

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>
4

1 回答 1

0

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

于 2012-02-24T14:40:46.510 回答