Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
その項目をクリックせずに、各リスト項目のクリックを 1 つずつ処理する必要があるシナリオがありました。このシナリオを達成できる可能性はありますか? 誰でも私がこの問題を整理するのを手伝ってくれますか?
前もって感謝します
mList.performItemClick( myList.getAdapter().getView(position,null,null),position,myList.getAdapter().getItemId(position));
ここで位置はあなたのクリック位置です
または単にこれを行うことができます
mList.getAdapter().getView(position, null, null).performClick();