Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
763 views
in Technique[技术] by (71.8m points)

android - How to get List View Item onTouch method?

I have a ListView and I want to perform Drag and Drop on list items. I am Overridding a onTouch method which has two parameters

@Override public boolean onTouch(View view, MotionEvent me) {}

In view I am getting complete ListView. How can i get perticular TextView on which key is pressed?

I am able to drag items when if I long press and get that view but i dont want to perform long press action.

Any way to get selected item position in onTouch?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

One way is to implement a custom Adapter which you use to populate your ListView. In the getView method of your Adapter you can call setOnClickListener on the view that you create, and add an item click listener that way.

There is some sample code of this in setOnClickListener of a ListView not working.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...