Re: [mono-android] Best way to have a list view scroll the whole screen

2012-02-02 Thread Tomasz Cielecki
You should not put the listview inside a scrollview. Listview provides its own functionality to scroll content inside the list. On Thu, Feb 2, 2012 at 6:32 PM, cmdrew wrote: > Hi, > > New to Android development so forgive any obvious errors!  I have > implemented an activity which has a number of

[mono-android] Best way to have a list view scroll the whole screen

2012-02-02 Thread cmdrew
Hi, New to Android development so forgive any obvious errors! I have implemented an activity which has a number of 'header' fields and a ListView. The ListView uses a ListAdapter to display the list items as they are both variable height and contain multiple lines per list item. This all works

Re: [mono-android] Gesture movement

2012-02-02 Thread Tomasz Cielecki
Maybe you can find inspiration in my project : https://github.com/Cheesebaron/MonoDroid.HorizontalPager On Feb 2, 2012 5:52 PM, "Benjamin Baldacci" wrote: > That's right... I didn't think to that. > > I'll try to think a way to do it. > Thank's for your feedback ;) > > -- > Benjamin Baldacci link

Re: [mono-android] Custom Gallery App

2012-02-02 Thread Jonathan Pryor
On Jan 26, 2012, at 10:52 AM, Ariandle wrote: > If anyone has any suggestions I would really appreciate some help here. These > out of memory errors are really becoming a roadblock for this app of mine. Two suggestions: 1. Override Activity.OnDispose() and call GC.Collect() (and/or call GC.Col

Re: [mono-android] Excessive JNI global references (2001) on hardware

2012-02-02 Thread Jonathan Pryor
On Feb 2, 2012, at 2:58 AM, PVoLan wrote: > Catched same problem at: > > Tablet LUNA RMD 7 with Android 2.3.1 > Phone Samsung GT-I5700 with Android 2.2.2 (firmware was updated by user from > original 2.1) What I find incredible is that there is shipping hardware with the emulator limits enabled

Re: [mono-android] Gesture movement

2012-02-02 Thread Benjamin Baldacci
That's right... I didn't think to that. I'll try to think a way to do it. Thank's for your feedback ;) -- Benjamin Baldacci linkedin Mobile : +33 6 32 45 63 79 On Thu, Feb 2, 2012 at 16:26, Tomasz Cielecki wrote: > Looking through it now. Seems li

Re: [mono-android] Gesture movement

2012-02-02 Thread Tomasz Cielecki
Looking through it now. Seems like a nice and very simple approach using animations instead of a View to hold sub-views. It has one drawback: - You cannot move the view half-ways to see what is in the view next to it (just like a scroll view, just horizontally). Nice work though :) On Thu, Feb 2

[mono-android] An interface for FindViewById<> ?

2012-02-02 Thread Stuart Lodge
I'm writing lots of databinding-type-code at the moment and keep finding myself needing to write duplicate wrapper functions for FindViewById<> - because both Activity and View seem to support it, but neither of them is the same interface. Is there any way I can get an extension method to think

Re: [mono-android] Gesture movement

2012-02-02 Thread Benjamin Baldacci
Did it help you? -- Benjamin Baldacci linkedin Mobile : +33 6 32 45 63 79 On Wed, Feb 1, 2012 at 08:57, Benjamin Baldacci wrote: > I don't know if you received my email (I got some trouble with it > yesterday). > > I said: > Here is the sample (ben

[mono-android] HELP : UNSUSCRIBE

2012-02-02 Thread Metch Osnou
I WANT TO UNSUSCRIBE ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid

Re: [mono-android] ActivityGroup deprecated?

2012-02-02 Thread Atsushi Eno
Hello, Hey guys, So I am using Tabs with multiple ActivityGroups with great success, and then by accident I found this on StackOverflow saying ActivityGroup is deprecated? http://stackoverflow.com/questions/6634233/problem-in-opening-sub-activity-of-activitygroup So now I am wondering, how do

Re: [mono-android] Samsung S Pen jar bindings

2012-02-02 Thread Atsushi Eno
Yes, the latter. Our generator generates incomplete binding code and cannot help that specific type (and maybe some more types), but it will be doable to put supplement code (which has to be manually written) to compile with the generated code. (It would be tricky steps to do though.) Hope it

Re: [mono-android] SPAM-LOW: Re: Can't get SQLite Working, keep getting exception?

2012-02-02 Thread emalamisura
Just to close up this question, this occurs if you have multiple projects and do not reference EVERY single project in your main Mono project. For example, in a typical .NET project you would try to keep your main project references down to minimum to reduce dependencies, but this doesn't work wit

[mono-android] ActivityGroup deprecated?

2012-02-02 Thread emalamisura
Hey guys, So I am using Tabs with multiple ActivityGroups with great success, and then by accident I found this on StackOverflow saying ActivityGroup is deprecated? http://stackoverflow.com/questions/6634233/problem-in-opening-sub-activity-of-activitygroup So now I am wondering, how do we go abou

Re: [mono-android] Samsung S Pen jar bindings

2012-02-02 Thread Roy Goode
Thanks Atsushi, Does that mean that the Samsung S Pen library simply can't be used in Mono for Android or that your jar binding tool does not support it so therefore the bindings cannot be automatically generated? On 2 February 2012 05:53, Atsushi Eno wrote: > Hello, > > We hope to release our

Re: [mono-android] Excessive JNI global references (2001) on hardware

2012-02-02 Thread PVoLan
HTC Wildfire with Android 2.2.1 (original) worked properly -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Excessive-JNI-global-references-2001-on-hardware-tp5081943p5450413.html Sent from the Mono for Android mailing list archive at Nabble.com.

Re: [mono-android] Calling Static JNI methods?

2012-02-02 Thread Stuart Lodge
Josh, Jon - thanks for posting this Flurry code - very helpful! Seems to be working, plus I just added the extra call we need: _flurryLogEvent = JNIEnv.GetStaticMethodID(_flurryClass, "logEvent", "(Ljava/lang/String;)V"); called via ExceptionSafe(() => JNIEnv.CallStaticV

Re: [mono-android] Excessive JNI global references (2001) on hardware

2012-02-02 Thread PVoLan
Catched same problem at: Tablet LUNA RMD 7 with Android 2.3.1 Phone Samsung GT-I5700 with Android 2.2.2 (firmware was updated by user from original 2.1) Can provide a testcase if needed. Will test on device with original firmware and report later. -- View this message in context: http://mono-f