Convert to C#
Android
2
Posts
2
Posters
10
Views
1
Watching
-
Hi, How to have this part of code in C# (monodroid).
listView.post(new Runnable()
{
public void run()
{
listView.setSelection(position);
}
}); -
Hi, How to have this part of code in C# (monodroid).
listView.post(new Runnable()
{
public void run()
{
listView.setSelection(position);
}
});Just a guess, but would this work?
listView.post(() => listView.setSelection(position));
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer