Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

c# - Android Xamarin Button inside a ListView

I want to create a ListView of objects in one of my activities, each row should have TextView and 3 Buttons. When I click on the buttons I don't want to handle them on the ListView' Adapter, I want to use them inside my Activity.

Is there any way to declare the buttons in my activity and set OnClickListener() for them? In addition I need to get the button position in the ListView. In other words I want to do something like that in my activity:

button = listView.FindViewById<Button>(Resource.Id.button);
button.SetOnClickListener(this);

and in public void OnClick(View v) do something like:

if (v == button)
{
    int positionInList = /* something */;
    //...
}
question from:https://stackoverflow.com/questions/65846491/android-xamarin-button-inside-a-listview

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

1 Reply

0 votes
by (71.8m points)

The easiest way of doing it would be by adding the click event in the GetView method:

public View GetView( int position, View convertView, ViewGroup parent) 
{
    .
    .
    .
    .
    yourButton.Click+= (sender,eventArgs) =>
    {
       // Your event 
    }
});

Good luck

Feel free to get back if you have any queries.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...