1
vote
1answer
17 views

MvvmCross: Android Application attribute

When using MvvmCross for Android, where is the actual Application object normally used by Android? This object is not always needed unless you want to customize the tag in the manifest. Mono for ...
2
votes
1answer
38 views

Creating a PCL that targets Monodroid

I am looking at the shiny MVVMCross project, specifically the N+1 days of MVVMCross series, and I notice that @slodge creates a PCL that targets Mono for android and Monotouch (at 1:10). I have ...
0
votes
1answer
44 views

null reference exception in android view Visibility binding

I have an MvxListView with a few items. Each item consists of 2 components, one is visible and the other is not (Gone). The gone component visibility property is bound to a boolean property on the ...
3
votes
1answer
52 views

MvvmCross - Android: How to perform App initialization on Main Thread

I have an Android application using MvvmCross. The App launches via an MvxSplashScreenActivity as the main launcher and I provided a setup class deriving from MvxAndroidSetup. It seems however that ...
2
votes
1answer
66 views

Best way to have single View/ViewModel/Xaml link to multiple Json resource files in MvvmCross

Inside my application I have many help pages, which all have a similar layout - header and bodytext. The way I have it structured at the moment, for every single Help page I have a View, ViewModel, ...
0
votes
1answer
38 views

Image Caching from http sources

I've read in a post from December 1st 2012 at Slodge bloch that File and DownloadCache plugins could be used for downloading and caching images from http sources. I think that's what I need in the app ...
0
votes
1answer
48 views

Tab Fragments with MvvmCross

I'm working on an app that uses MonoTouch, MonoDroid, and MvvmCross. My app has a screen that has tabs. I need that screen to work on both Android and iOS devices. In looking at the tutorials, it ...
1
vote
1answer
46 views

Using MvxGridView in MvvmCross

What I want to do is s simple screen showing multiple items in a Grid. This can on android easily be archived using a GridView. In MvvmCross I guess I have to use MvxGridView to archive the same. ...
1
vote
1answer
36 views

MvvmCross MvxHttpImageView error

I'm trying to bind a web image in a listview on Android, using Xamarin.Android and mvvmcross. I'm getting this error though. MvxBind:Error: 7.13 View type not found - Mvx.MvxHttpImageView ...
0
votes
1answer
48 views

Start MvxActivity from normal Activity?

Particularly the Navigation between the Views over the ViewModels looks like that: ShowViewModel<InfoViewModel>(); Or between normal Activities: context.StartActivity(typeof(InfoActivity)); ...
0
votes
0answers
65 views

How to use contextmenu for listview using mvvmcross?

I try to display a contextMenu with longClick action on an item in listView(Mvx.MvxBindableListView). I tried something like this but it doesn't work (Nothing appear when longClicking) Someone now how ...
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 ...
1
vote
1answer
33 views

TabHost pass Parameter in CreateIntentFor<>

After downloading the newest Version of mvvmcross (V3) I had some work to do, to upgrade some of my projects to the new state. Last thing I'm not able to fulfill is to pass a parameter to the ...
0
votes
2answers
62 views

How to store picture in sqlite table?

I'm trying to store a picture in sqlite table. I'm using mvvmcross vnext and its plugin sqlite. I have this class Image for the table "Image" in the database : public class Image : Model { ...
2
votes
1answer
94 views

MvvmCross - Calling Web Service from View Model

I'm new to MvvmCross and Android development. I have a need to call to POST data to a JSON web service in my view model. I then need to display the result of the web service back in my UI. The gist of ...
0
votes
1answer
119 views

Unable to add Json.Net to Portable Class Library with MonoDroid and MonoTouch

I don't understand this post - http://slodge.blogspot.co.uk/2013/01/almost-portable-binaries.html I'm still slightly confused. Are you saying that if we choose to use something like Json.Net in our ...
0
votes
1answer
71 views

Push-notifications and MVVMCross

We are facing a problem with handling a notification on Android with MVVMCross. I implemented the default void CreateNotification() but when we tap the notification in the notification center, the ...
0
votes
1answer
55 views

How make a viewmodel return data to another?

I'm trying to find a solution to passing back data from a viewmodel to another when I call DoClose() I've got a view where the user can add informations in edittext, there is also a button that open ...
1
vote
1answer
36 views

Type reference forwarding in the MonoDroid project requiring it

Regarding to the solution described in this post, a third assembly is required to forward the type resolution to the correct assembly. When adding this reference to the Android class library project ...
1
vote
1answer
72 views

Sharing Color Converter on MvvmCross for multiple platform (mvvmcross v3)

The problem answered on this Q&A is how we can show a color on our UI project using mvvmcross, when we have a ViewModel with for example an Enumeration Property, without the need to have a Color ...
1
vote
1answer
70 views

Binding multiple targets to same source

I am making a page which contains a ViewPager with pages that consist of a TextView displaying a title and a ListView displaying some charts from a custom view I have made. I have this working fine ...
0
votes
1answer
31 views

Error when building project with monodroid/mvvmcross

I've got an error when I try to build a project (monodroid/mvvmcross). This is the message error : Error 37 The type 'Android.App.ListActivity' is defined in an assembly that is not referenced. ...
1
vote
1answer
56 views

MVVMCross Databiding v3 [closed]

Could Anyone get me a sample databinding using converters that work with mvvmcross v3? on Xamarin.Android? Thanks your help is really appreciated
0
votes
1answer
31 views

Get Location with Mvvmcross

I'm trying to get location in my application (mvvmcross/monodroid) I follow this post : http://slodge.blogspot.be/2012/04/getting-location-information-in.html I'm using Vnext version. When I try to ...
2
votes
1answer
93 views

How to use Google Maps v2 API with MVVMCross

I'm trying to get the Google Maps v2 API working with MvvmCross v2 (vNext) and have run into some problems. The example that I have for using Google Maps with MvvmCross has a view that inherits from ...
4
votes
1answer
80 views

Android App is too large and Linking disables functionality

I'm done with my app and now I'm trying to build the .apk and test it on my phone (without debug, in release mode). Setting the Linking to "None" everything works fine. The Problem here is, that ...
1
vote
1answer
315 views

MvvmCross Tutorial - Portable Class Library assembly reference error - MonoDroid

I am really eager to get started with MvvmCross - it looks like a very promising framework for cross-platform solutions. Anyway, I am having a build error as I'm going through the tutorial, ...
1
vote
1answer
44 views

Best way to include Socket MvvmCross with PCL

First I would like to thank you (Stuart in special) for this amazing framework MvvmCross. I have an application case that involves socket connectivity, and I would like to go with PCL for Android, ...
0
votes
1answer
57 views

How to make a DatePickerDialog for monodroid/mvvmcross?

I made a DatePicker like that : https://github.com/eMi-/mvvmcross_datepicker_timepicker/ But I want to have this DatePicker in a dialog for monodroid and bind the selected date (mvvmcross). Someone ...
3
votes
1answer
208 views

Can i use MvvmCross vNext with Xamarin 2.0?

I am using the MvvmCross framework in our Android and iOS apps, but we where planning on upgrading from the master branch to vNext. I have just upgraded my systems to use Xamarin.iOS and ...
1
vote
1answer
218 views

Mvvmcross Android - Error Inflating Class: ClassNotFoundException

I am getting an error in my OnViewModelSet() function when trying to inflate an xml file. When calling LayoutInflater inflater = LayoutInflater.From(this); View mainView = ...
1
vote
1answer
158 views

Intents in mvvmcross on Mono for Android

I've recently upgraded to Xamarin Studio running on Windows. I have a simple implementation of the mvvmcross TipCalculator tutorial that ran nicely on Android and the various Windows flavors. After ...
0
votes
1answer
136 views

How to make portable library of Zxing.Net to use with mvvmcross?

I would like to scan bar code, Zxing.Net look pretty good but I need to have a portable version so that I can use in my project (monodroid/WP/IOS/MVVMCROSS). I will use this portable version in ...
0
votes
1answer
61 views

How to implement social api (facebook) for monodroid/mvvmcross application?

Which api do you use to implement facebook in monodroid/mvvmcross application ? Someone tried to do a java bindings library from facebook android sdk ? I just have to send a picture on the wall of a ...
2
votes
1answer
61 views

How to insert text in bitmap with mvvcross/monodroid?

I'm would like to insert a string text in bitmap picture. I have to use mvvmcross/monodroid to create an application, so I can't use Graphics object or monodroid specific language (the code have to ...
0
votes
1answer
72 views

How display picture taken with the camera in the view with mvvmcross vnext?

I was able to access the camera and take a picture (with PictureChooser plugin), It store the picture in picture-library of android, I just want to display it on the screen and delete it (I don't need ...
1
vote
2answers
182 views

Localising text in MvvmCross ViewModels

I'd like to get all my localised text from the ViewModels (as it's often dynamic), and I was wondering how you'd use a converter to get the text from the json files used for localisation. For ...
1
vote
1answer
57 views

How to take picture with MvxPictureChooserTask from mvvmcross vnext?

I would like to take a picture from camera and after display it on the screen. I saw this post Take picture mvvmcross monodroid but this isn't the vnext version. (I haven't the ...
4
votes
1answer
143 views

MvvmCross: Using InvokeOnMainThread in plugin

I am extending the Messenger plugin with functionality, which will make it possible to pass messages on the main thread instead of everything happening on a background thread. I have extended ...
1
vote
1answer
267 views

Bind TimePicker & DatePicker - MVVMCross (Mono For Android)

How to bind a Time - & /DatePicker with MVVMCross in Mono For Android? <TimePicker android:layout_width="wrap_content" android:layout_height="wrap_content" /> <DatePicker ...
0
votes
2answers
116 views

Simple mvvmcross monotouch with xib support (and monomac)

I tried the simpledroid with INotifyPropertyChanged and ICommand successfully. I want to do the same with monotouch and xib designer,but without TouchDialog. Is there a way to implement without ...
5
votes
1answer
199 views

Debugging MVVMCross PCL in MonoAndroid projects (VS2010)

I'm developing some apps using the MvvmCross framework, and I'm having some problems with the debug of PCL's when running "Droid" projects in VS2010. I've downloaded the sample apps from ...
0
votes
1answer
126 views

Remove activity from stack using Mono droid and slodge mvvmcross

I am trying to find a way to remove an activity from the stack- We have a flow in our app: activity/viewmodel a -> activity/viewmodel b ->activity/viewmodel c. In c the user have the posibility of ...
0
votes
0answers
68 views

CrossUI.Droid.Dialog EntryElement loses focus with text prediction

I'm creating a new Dialog view in Droid platform, using the CrossUI.Droid.Dialog project. I'm also using bindings provided by the MvvmCross Framework. Here is the code I have in the Droid view, to ...
1
vote
1answer
124 views

Take/Select picture and show it in ImageView without saving first (using MvvmCross)

I want to choose a picture from library or take a picture with the camera and show the result to the view (ImageView) But according to a few posts including this one, the MvxHttpImageView I use needs ...
0
votes
1answer
164 views

MvvmCross Android Button Click binding not working in Release build

Following on this question, I have built the application in Release and published to a Samsung Galaxy Tab 2 10.1, Android version 4.0.4, and the button click command does not fire. I even put a dialog ...
0
votes
2answers
61 views

Multiple MvxBindableListView's in a single layout?

I've been trying to place 3 MvxBindableListView widgets in my layout with no success. Is there a way to do this so that each MvxBindableListView is fully displayed without inner scroll and for my ...
0
votes
1answer
89 views

Change ItemTemplate RelativeLayout background color based on a model property with MvvmCross

I have a main view with a MvxBindableListView. Item template has a RelativeLayout as container with TextViews, ImageView etc.. inside. I need to be able to change background colour of the ...
1
vote
1answer
128 views

MvvmCross Android - Alternative to RelativeSource binding for button command

I have a list of items bound to a MvxBindableListView with a MvxItemTemplate. I usually have 4 items in my list bound to my view. Data gets updated and the view displays the new data just fine. Now, ...
1
vote
1answer
109 views

MvvmCross Android Bind Image from byte[]

Does anyone know how to bind a byte[] (image) to a Image control in a axml view. My ViewModel inherit from MvxViewModel. All my other bindings works great but I cannot find a way to bind that image.

1 2 3