Then I don't see the point of the forum. There will be StackOverflow.com, the
forum and Xamarin support. Three sources of diverting answers, three sources to
consider.
I would shut down the mailing list. If you have the forum and turn email
notifications on, it will be a perfect replacement.
Re
Agreed, forums are a much better solution to discussions and as other
suggested, having more sources is a source of confusion :)
So, no need for e-mailing list anymore.
Miha
From: monodroid-boun...@lists.ximian.com
[mailto:monodroid-boun...@lists.ximian.com] On Behalf Of René Ruppert
Sent: Frid
It´s a great idea.
Pablo Escribano (@HuelvaFriki)
2012/10/5 Miha Markic
> Agreed, forums are a much better solution to discussions and as other
> suggested, having more sources is a source of confusion J
>
> So, no need for e-mailing list anymore.
>
> ** **
>
> Miha
>
> ** **
>
> *
Hi Atsushi Eno,
Aa you advised me in yesterday post
(http://mono-for-android.1047100.n5.nabble.com/Custom-AccordionView-tp5712080.html)
.. I am trying to zip (bin and resources) from my eclipse/adt built project
and include in my binding project as LibraryProjectZip..
Then I build the binding pro
Hello,
Instead of guessing what you are actually seeing, I tried to bind your
library by myself. After creating a binding library and an app project
(that is based on your AccordionWidgetDemoActivity), it turned out that
your "library" is not really a library and I'm not sure if this can even
replacing the email list would result in my dropping out. web forums always
sound cool, "but you can get to them anywhere." I can get to my email easily
anywhere: laptop, desktop, on the road, iphone, android whereever because ever
OS has an email client that allows me to be touched. Web foru
I totally agree with Wally on this.
Cheers
On 5 October 2012 14:11, Wally McClure wrote:
> replacing the email list would result in my dropping out. web forums
> always sound cool, "but you can get to them anywhere." I can get to my
> email easily anywhere: laptop, desktop, on the road, iphone
I agree to this line. I don't like navigating to many different sites.
On Fri, Oct 5, 2012 at 3:11 PM, Wally McClure wrote:
> replacing the email list would result in my dropping out. web forums
> always sound cool, "but you can get to them anywhere." I can get to my
> email easily anywhere: l
// E-mail does not permit it, so I'm programming it:
Wally.Comment.Thumbs(UP);
//Facebook just exists to me when I receive an e-mail that I don't erase
first...
Em 05/10/2012, às 10:11, Wally McClure escreveu:
> replacing the email list would result in my dropping out. web forums always
> sou
+1. Never went to the old web forum either.
On 5 October 2012 14:37, Goncalo Oliveira wrote:
> I totally agree with Wally on this.
>
> Cheers
>
> On 5 October 2012 14:11, Wally McClure wrote:
>
>> replacing the email list would result in my dropping out. web forums
>> always sound cool, "but yo
On Oct 5, 2012, at 9:11 AM, Wally McClure wrote:
> Web forums don't reach out and touch me.
This one can. From forums.xamarin.com, click the small "world" icon to the
right of your login name ("Notifications" is the hover-text), then click
Notification Preferences. You can then enable Email not
if that capability is there, the default option is for email to be turned on,
not off. Also, does this turn on email for all posts to the sight? If not,
then the option is useless.
If the example is what is listed below, then the email is still useless. I am
not going to go to a site to se
Greetings,
I'm trying to update TextView's on my ui, however the changes aren't
reflected until I click into a text box or something.
I have a custom calendar, which is a RelativeLayout that contains a 5x7 grid
of LinearLayout's, which in turn contain the TextView that holds the day
number.
When
I'm going to try to use a callback/delegate in my launcher activity and pass
it to my custom calendar, where the callback will call RunOnUI for it.
I just want to see it work!
--
View this message in context:
http://mono-for-android.1047100.n5.nabble.com/Updating-the-UI-tp5712111p5712112.html
if I started a kickstarter to convert parse.com api to mono-droid, how many
people would kick in? It solves the following problems:
1. push notification.
2. Database. All of them.
3. Sharedpreferencehelper
4. A (simple) user system or a way of tagging (most) phones on reinstall.
5. stuff
I think
I know how to hide the task bar and title bar in the emulator/device. But
how do i hide them in the Mono designer (in VS2010). I have some huge space
requirements and i am trying to cram a bunch on the screen...
Thanks!
--
View this message in context:
http://mono-for-android.1047100.n5.nab
jon,
if you can get a starter project copy of their starter project , and if
people just used the rest api, it wouldn't need a project. That would be,
um, done.
Who wouldn't want a 1million records on a cloud database? Push
notifications that go to (c# I presume, just as easy) bcrs?
I'm just sayi
NOPE.
Even linking the button clicks of the Calendar's child members button's
click event with an event in the Activity, where this activity event calls
calendar.NextMonth() within RunOnUi(), the screen still doesn't update until
I click off into another text box.
--
View this message in contex
...
Well, I was trying to update the text of a TextView that was already added
to a LinearLayout.
What ended up working was to first remove the TextView from the
LinearLayout, update its text,
and then re-add it.
ANDROID SUCKS!
--
View this message in context:
http://mono-for-android.1047100
I've built a native library with the NDK and I want to use it (I have a .so)...
how do I go about doing that?
___
Monodroid mailing list
Monodroid@lists.ximian.com
UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid
Try refreshing view by
list.Invalidate()
after making changes to it.
Also, try to do anything that updates the display in the main ui thread.
You can do this by running your code in the following curly brackets
RunOnUi( () => { ... } );
On Fri, Oct 5, 2012 at 1:55 PM, Matteo Polito
... I say this with a compassionate love for programming ...
--
View this message in context:
http://mono-for-android.1047100.n5.nabble.com/Updating-the-UI-tp5712111p5712120.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
M
On Oct 5, 2012, at 3:00 PM, "Jeremy A. Kolb - ARA/NED" wrote:
> I've built a native library with the NDK and I want to use it (I have a
> .so)... how do I go about doing that?
Add it to your project and set its Build action to AndroidNativeLibrary:
http://docs.xamarin.com/android/advan
Have you tried invalidating the view instead of removing it and re-adding it?
>From Android docs
http://developer.android.com/reference/android/view/View.html#invalidate()
"To force a view to draw, call invalidate()."
Or from a non-ui thread call postInvalidate().
On Fri, Oct 5, 2012 at 10:13 PM
How do I call into the library? Do I create a Java class for it and then wrap
that or do I use the standard .net way?
From: monodroid-boun...@lists.ximian.com [monodroid-boun...@lists.ximian.com]
on behalf of Jonathan Pryor [j...@xamarin.com]
Sent: Friday
On Oct 5, 2012, at 4:55 PM, Jeremy A. Kolb - ARA/NED wrote:
> How do I call into the library? Do I create a Java class for it and then
> wrap that or do I use the standard .net way?
You can use the normal .NET way with DllImportAttribute.
- Jon
___
I have created this bug for the issue I have described in the initial post:
https://bugzilla.xamarin.com/show_bug.cgi?id=7700
-Ryan Hoffman
On Sat, Sep 29, 2012 at 7:08 PM, Ryan Hoffman wrote:
> Just bought my MfA and MT licences, and I'm getting started :). I want to
> use an IoC container in
Hi,
I have the same problem and the only solution I found is
ListView list = ...
list.SetSelection(5);
list.PerformItemClick(list.Parent as View, 5, 5);
But if there is a ItemClick handler on that list, it will be fired ...
Well, is there someone who have a better solution?
Hugo
--
On Fri, Oct 5, 2012 at 11:55 AM, Matteo Polito wrote:
> Hi guys, I'me becoming mad. I can't pre-select (hightlight) a row of a
> listview. I've tried everything I've found on internet but nothing work.
>
> Attached there is a simple solution.
>
> Someone knows how to solve this problem. Thanks.
>
29 matches
Mail list logo