我有一个object类型的arrayList,它有两种联系人,一个是app联系人,另一个是手机联系人......我需要根据结果隐藏一个特定的按钮。
由于
答案 0 :(得分:1)
尝试这样的事情:
if (items.elementAt(0) instanceof PhoneContact) { //for example if the name of your class is PhoneContact
//do something
} else if (items.elementAt(0) instanceof AppContact){ //if your class name is AppContact
//do something else
}