3
votes
1answer
104 views

Monodroid - Handling Click events inside ListAdapter rows

I have a ListView with an ArrayAdapter set to it, and each row in the adapter contains four buttons that need to receive and handle click events. Normally in Android I would call SetOnClickListener on ...
-2
votes
1answer
65 views

how to set the height of a ListView in Mono for android?

like some or many here i wan'T to know how i can set the height of an ListView programatically, but it seems, that no one had this issue with mono. I've seen some solutions for the normal Android, ...
0
votes
1answer
162 views

ListView row loses focus

I've got an issue where an EditText is in a row in a ListView. The User can enter multiple lines of text in the EditText. Each new line causes the Row to expand, and the ListView to refresh/update. ...
0
votes
2answers
553 views

Unable to get listView.ItemClick to be called in MonoDroid

I have the following code: protected override void OnCreate (Bundle bundle) { progress = ProgressDialog.Show(this, "", "Loading..."); progress.SetProgressStyle(ProgressDialogStyle.Spinner); ...
4
votes
2answers
278 views

Android ListView with CursorAdapter has Incorrect Scroll Position after Requery is called when new items are added

Here's the scenario: I've got a simple ListView displaying a twitter feed. I have a CursorAdapter which is fetching tweets from sqlite. When I call requery() on my cursor, I expect that new tweets ...
0
votes
1answer
197 views

Mono for Android: ListView casting wrong values to toast

My list.ItemClick: lstText.ItemClick += delegate (object sender, AdapterView.ItemClickEventArgs args) { var userIdTextView = FindViewById<TextView>(Resource.Id.txtUserId); var ...
0
votes
1answer
397 views

Mono For Android: Sending data from clicked listview item to Alert dialog it initializes

Click: lstText.ItemClick += (sender, args) => { Logon(GetString(Resource.String.LogonMessage), sUUID, sUserId, sUserPIN); }; Alert Dialog: private void Logon(string message, string sUUID, ...
0
votes
2answers
2k views

Android Simple 2 line ListView example

I'm using Mono For Android (C#) and I'm trying to get ListView to display 2 lines in a row. There are some tutorials but some of them do not work in MFA and those that do work are quite complicated. ...
0
votes
1answer
160 views

Adding an image for faild downloads in universal image loader

In my monodroid application I use universal image loader to display images on a list view . Before displaying images i show a progress bar on images. I wanna add an default images for when the ...
0
votes
2answers
125 views

Refreshing a ListAdapter from a Dialog

I pretty stumped on how to refresh a ListAdapter I have in an activity from an AlertDialog I'm calling from the same activity. Here's the code of the activity: private static ...
1
vote
2answers
522 views

Custom ListView Adapter Showing Incorrect Values [Mono Android]

Hello Stack Overflow Android Users, Please help with the following question: Problem I'm writing an a feature for an app that lists species of fish. I'm using a custom ListView Adapter class (let's ...
0
votes
0answers
117 views

Mono for Android: scrolling to a checkbox (in a listview) unselects it

I have a ListView of Checkboxes, populated from a custom BaseAdapter. If I scroll (with the orange selection) to a checkbox I just checked, it immediately get unchecked, without even the adapter's ...
1
vote
1answer
612 views

Monodroid Listview.Adapter versus ListActivity.ListAdapter

In the project I am working on, I was originally inheriting from ListActivity in order to make activities with Listviews in them. But, as I have a base class to make settings menus, and other things ...
1
vote
2answers
193 views

How to store primitive values in ViewHolder?

I'm using the ViewHolder pattern with a CursorAdapter to populate a ListView. I'm trying to store an integer in my ViewHolder that corresponds to a value in a column from my cursor. Later I want to ...
0
votes
1answer
805 views

ListView with ViewStub in Item Template - expanded controls not showing for last item

I have the following application layout: Activity with a LinearLayout hosting a Fragment, which hosts a ListView in a LinearLayout. I've templated (not sure it's the right term - I'm coming from WPF) ...
1
vote
1answer
325 views

Android Contextual ActionBar and ListView multiselect support in MonoDroid: where is ChoiceMode.MultipleModal?

To enable CAB support for ListView I need to set ListView.ChoiceMode to ChoiceMode.MultipleModal which is absent in ChoiceMode enum in MonoDroid. How to enable CAB supoort in this case? Wait for next ...
0
votes
1answer
1k views

using Adapter to display ListView Mono for android

I created a ListView and to populate it I'm using Adapter. GetView() of Adapter class is as follows: LayoutInflater inflater = activity.LayoutInflater; if (convertView == null) { convertView = ...
0
votes
1answer
345 views

InvalidCastException on ListItem Click (Mono for Android)

1.) My main.xml contains : <ListView android:id="@+id/lsym" android:layout_width="wrap_content" android:layout_height="wrap_content"/> 2.) After populating the list, ...