Tagged Questions
1
vote
0answers
73 views
Android - Animation resets after list update - monodroid and mvvmcross
I am implementing a "slidein" menu similar to the one found in the facebook app - see the images. It is implemented using mono droid and mvvmcross.
The way I am achieving this, is to have two layouts ...
0
votes
1answer
78 views
How to dynamically add item to listview in Monodroid
I am writing an Activity where the user must be able to dynamically add items ( a class with a code and a description ) to a listview by clicking a "add info" button (on top of the screen). Initially ...
0
votes
3answers
143 views
OnListItemClick(…) is marked as an override but no suitable method found to override
I have created a ListView from an Adapter, but I would like to select items, that gives an information about this item in new Activity.
That's my code:
protected override void ...
0
votes
2answers
255 views
Mono for Android: Listview scrolling issue with spinners and edit text
My problem is on two fronts.
First issue: Scrolling amnesia
I have a ListView with spinners and edit texts. It acquires it's data from webservice. The problem is when I write up a value on the ...
0
votes
3answers
406 views
AddTextChangedListener in mono for android
I have a database that I'm using to populate a listview. Above this listview there is an edittext where the user searches for an item in the listview. Based on the input, I want the listview to be ...
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 ...
3
votes
1answer
245 views
Removing a listview item from a listview item button
I have implemented a custom BaseAdapter which displays list items with a custom layout.
Everything works but I have tried to add a Remove button to appear next to the items (which I have), however I ...
1
vote
1answer
267 views
MVVMCross Get SelectedItem from a MvxBindableListView
Little problem with my Android application and I don't know how to solve it with MVVM Cross.
Here is my ViewModel:
public class AddressesShowViewModel : MvxViewModel
{
public List<Address> ...
0
votes
1answer
96 views
load the entire ListView in background and get an UIControl inside each ListItem
I need to load a ListView entirely and get an UIControl inside each ListItem even if the item view is not displayed on the screen.
I tried the ChildViewAdded event, but it is raised only when the ...
0
votes
2answers
252 views
listview only shows one item
I want to add items to it from a foreach loop. My problem is that I can only see one item no matter how many I add. I've made an example code below with my problem in it. Starting with my layout.
...
1
vote
1answer
217 views
Does MVVMCross have a way to change the selector when clicking ImageButton on ListView?
The problem is the same as not programming with MVVMCross, but I wonder if there is a "crossplatform" solution:
When using an ImageButton on a MvxBindableListView (or a ListView), we have to put some ...
3
votes
1answer
571 views
MVVMCross changing ViewModel within a MvxBindableListView
Little problem with my Android application and I don't know how to solve it with MVVM Cross.
Here is my Model
public class Article
{
string Label{ get; set; }
string Remark { get; set; }
...
0
votes
1answer
224 views
Overriding ListView property in Monodroid
I'm currently programming in Monodroid and I'm having an issue with the extension of a Listview.
I currently have ListView extended like this:
public class TTListView : ListView
{
private ...
2
votes
1answer
240 views
Monodroid endless list
I'm pretty new to monodroid and I was wondering how you can make a list that load new items if you reach the bottom. Can someone give me some guidlines how I should handle this?
Thanks in advance
1
vote
2answers
398 views
How to syncronisize two Listview positions
I have two ListViews. Is there any way to synchronize the position of ListViews when I scroll any one of the Lists. Im implementing an AbsListView.OnScrollListener, registering to the ListView. When ...
0
votes
1answer
138 views
Cast exception on my custom Adapter
I'm currently having a issue with the Android ListView in Monodroid.
I initialize and set up the list with a custom adapter like this:
ListView setting_listview = new ListView(this);
//Components ...
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 ...
0
votes
0answers
178 views
Display/Hide of a delete button in a ListView
I am working with a ListView with custom items. In each item there are a couple of text fields and a delete button, which is initially invisible. The ListItems set a long click handler that will ...
3
votes
1answer
442 views
How to get all the values from a spinner within a ListView Custom Adapter
Im trying to create a Spinners within a ListView, but i dont know how to get all the values of each spinner in a List of strings for example. This is the code of the Adapter:
public class ...
0
votes
5answers
1k views
ListView adapter with many checkboxes
I'm having some minor problems with my listview. Every item has some information and a checkbox. This shows up fine, I can select and deselect checkboxes etc etc.
However I discovered some strange ...
1
vote
1answer
829 views
Populating ListView in MonoDroid: Custom ArrayAdapter or Custom ListAdapter?
I have a ListView, with each element containing several TextViews. I need to populate this ListView dynamically. After a bit of research, it appears I must do this either with a custom ArrayAdapter or ...
0
votes
1answer
244 views
listview with checkbox mono for android
I have a problem with checkboxes in listview.
Every raw have it's own checkbox and textview.
If i check 1st checkbox -> checked become every 5th checkbox (2-nd -> 6th)
Where is the problem?
0
votes
1answer
378 views
listview with multi-selection in monodroid
How to create a ListView in mono for android with multi-selection. Please help with some source example.
In java it is listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
I can't find something ...
2
votes
4answers
1k views
Monodroid ListView update problems
Just started with Monodroid and I'm currently working on a ListView.
I got a List added to the ArrayAdapter and i can see my first two items correctly. However when i add a third element to the list, ...
0
votes
1answer
389 views
How to combine TextView, a button, and a ListView on Mono Android (C#)
I'm trying to take user input from a TextView, this can be part of someone's name. And a button to + delegate an event, and then display a list of matching entries with phone numbers in a ListView. ...
0
votes
2answers
1k views
ExpandableListView Mono for Android
Im trying to do this example http://techdroid.kbeanie.com/2010/09/expandablelistview-on-android.html, but using monodroid, my problem is that im used to program in java but i hava problemas to call ...
1
vote
0answers
149 views
With Android OS 4.x is there a way to restore iPhone-like list navigation when drilling down into a sub-list?
I just upgraded my Nexus S operating system from 2.3 to 4.0.3 ("Ice Cream Sandwich"). I've been developing an app with MonoDroid 4.0 and noticed a change in the transitions between ListViews. I'm ...
0
votes
1answer
217 views
How to acces listview item during creation/start of activity?
For my application i retrieve a number from the database. When the activity starts up it has to show the number in a different color then the other numbers in the list.
After retrieving the data ...
0
votes
1answer
193 views
How can i get the Text data from a Custom List View on Mono for android
I have ordered alphabetically hte list of customer on my Custom List view, but i realise that i am getting the position of the list view control but not the object. For example i have this code:
...
1
vote
1answer
595 views
Android ListView Filtering using AsyncTask
I've got two competing problems.
Situation
Got a Massive Listview 10k+ items that I'm trying to filter via an EditText on change.
Error 1
ANR keyDispatchingTimedOut error
I had the filtering ...

