我在我的視圖中有一個ExpandableListView。我已經實現了它的小孩點擊監聽器,它的工作完美。如何以編程方式執行ExpandableListView子項目單擊
@Override
public boolean onChildClick(ExpandableListView parent, View view,
int groupPosition, int childPosition, long id) {
}
現在,我還希望以編程方式執行子點擊。有沒有可能以編程方式調用它?
我已經通過我回convertView
上getChild()
方法,並通過對執行上點擊試過,
((View)updateListAdapter.getChild(0, 2)).performClick();
,但沒有運氣。它不叫onChildClick()
方法。
這是什麼意思? performItemClick(view - > this) –
@AlpAltunel這是您想要點擊的項目的視圖。我離開了這一步,但顯然你需要視圖來完成這項工作。這個答案解釋得比我更好:https://stackoverflow.com/a/28335106/4504191 –