HI,
I want use IOIO card with MonoDroid.
Is somebody now how charge IOIO library in MonoDroid ?
Thank's.
serge.
--
View this message in context:
http://mono-for-android.1047100.n5.nabble.com/IOIO-card-use-with-MonoDroid-tp5711553.html
Sent from the Mono for Android mailing list archive at Na
HI,
I want use IOIO card with MonoDroid.
Is somebody now how charge IOIO library in MonoDroid ?
Thank's.
serge.
--
View this message in context:
http://mono-for-android.1047100.n5.nabble.com/IOIO-card-use-with-MonoDroid-tp5711554.html
Sent from the Mono for Android mailing list archive at Na
Hallo
i have aquestions:
how do i notice a orientation change? if the Portrait mode is left and the
Landscape mode appears, a new layout have to be loaded.
--
View this message in context:
http://mono-for-android.1047100.n5.nabble.com/Orientation-Change-tp5711555.html
Sent from the Mono for A
http://docs.xamarin.com/android/tutorials/Handling_Rotation
On Mon, Aug 27, 2012 at 6:28 AM, MysteriX wrote:
> Hallo
> i have aquestions:
> how do i notice a orientation change? if the Portrait mode is left and the
> Landscape mode appears, a new layout have to be loaded.
>
>
>
>
>
> --
> View th
And.. can you tell me how to completly disallow the orientation change? it
will not be allowed to be changed..
--
View this message in context:
http://mono-for-android.1047100.n5.nabble.com/Orientation-Change-tp5711555p5711557.html
Sent from the Mono for Android mailing list archive at Nabble.
Add an attribute to the activity if you want to lock in a certain
orientation.
[Activity( Label = "My Activity", ScreenOrientation =
Android.Content.PM.ScreenOrientation.Portrait )]
public class MyActivity : Activity
On 27 August 2012 15:28, MysteriX wrote:
> And.. can you tell me how
You can specify the orientation of an activity by using the
ScreenOrientation property in the activity's attribute:
[Activity(ScreenOrientation = ScreenOrientation.Portrait)]
public class MyActivity : Activity
On Mon, Aug 27, 2012 at 10:28 AM, MysteriX wrote:
> And.. can you tell me how
Hi there,
Has anyone done something similar to an overflowing context menu? Like the
one that Google Maps app uses.
Has to work with API 10.
Any guidelines on how to achieve this would be much appreciated.
Cheers,
--
Gonçalo Oliveira
___
Monodroid
Hello.
everytime my device changes his orientation from portrait to landscape or
back the OnCreate-Event is fired.. How can i call it only one time? thank
you
--
View this message in context:
http://mono-for-android.1047100.n5.nabble.com/OnCreate-fires-everytime-events-tp5711558.html
Sent from
see
http://stackoverflow.com/questions/4299899/android-oncreate-getting-called-multiple-times-and-not-by-me
On Mon, Aug 27, 2012 at 10:33 AM, MysteriX wrote:
> Hello.
> everytime my device changes his orientation from portrait to landscape or
> back the OnCreate-Event is fired.. How can i call it
Hi,
I want use IOIO card with MonoDroid.
Is somebody now how charge IOIO library in MonoDroid ?
I had a look at the IOIO board a while back. It should work fine as long
as monodroid is happy sending instructions to and from the USB channels.
Paul
--
"Space," it says, "is big. Really big. Y
I've downloads the AdMob solution from the samples and tried to get it to work.
I had some difficulty (Had to open AdMob.cs and strip out references to
GoogleAdMobAdsSdk-6.1.0.jar before adding it back in. This allowed the project
to build).
Now that I've successfully built AdMob the AdMobTest
On Aug 27, 2012, at 2:29 AM, Igor Russkih wrote:
> Is this a bug in MonoAndroid build env or I lost something?
Yes, this is a bug. Unfortunately it won't be fixed in the pending 4.2.5
release.
You can workaround this by editing Novell.MonoDroid.Common.targets as outlined
in:
https://b
Great
Regards,
Chetan Madbhavi
The Banyan Advertising.
"Sent from my BlackBerry®"
-Original Message-
From: Goncalo Oliveira
Sender: monodroid-bounces@lists.ximian.comDate: Fri, 24 Aug 2012 17:11:41
To: Discussions related to Mono for Android
Reply-To: Discussions related to Mono f
ok a few things you should know about android.
Each intent has it's own contentview. So if you want tabs on each intent,
you have to make your content view set on each intent. You might be
thinking of a viewflipper or the like which, though annoying to set up, is
what I think you want.
Also Ther
I tried to install Mono for Android many times and I couldn't get it right.
If you have any thoughts...
Thanks!
Log file:
[2012-08-27 13:36:03.484] [Info] Installation ID:
40086c15-0dd3-4020-befb-0c955142a729
[2012-08-27 13:36:03.484] [Info] Operating system: Windows XP
v5.1.2600.196608 (Profess
Cheers for the replies guys...
My app is a drill-down app with a lot of data and a lot of nested ListViews,
so it's crucial that the navigation is good so people can get to info
quickly and logically.
I've been working with ActivityGroup, although I know that it is deprecated.
I have it working b
On Aug 27, 2012, at 4:42 PM, dickies wrote:
> I thought of using fragments but my target Android version is 2.2 (Froyo) and
> above and I read that Mono for Android doesn't support fragments in anything
> under 3.0 (yet).
Mono for Android supports Fragments, both in the Honeycomb incarnation an
That's great to know Jon, thanks.
Bit of of a re-write to do!
--
View this message in context:
http://mono-for-android.1047100.n5.nabble.com/How-to-keep-tabs-at-the-bottom-of-the-screen-tp5711545p5711571.html
Sent from the Mono for Android mailing list archive at Nabble.com.
__
Well I've made some progress. The below function replaces my existing one:
public Bundle SendBillingRequest(Bundle bundle)
{
Parcel _data = Parcel.Obtain();
Parcel reply = Parcel.Obtain();
bool bRes = false;
t
Thanks, thats quite enough for now.
Igor
On Mon, Aug 27, 2012 at 11:15 PM, Jonathan Pryor wrote:
> On Aug 27, 2012, at 2:29 AM, Igor Russkih wrote:
> > Is this a bug in MonoAndroid build env or I lost something?
>
> Yes, this is a bug. Unfortunately it won't be fixed in the pending 4.2.5
>
Mark, thanks for posting that stub code. I just got it in my sample
application, and am now seeing exactly what you are seeing. I'll reply if I
find out anything new.
Before I had tried your code, I tried to message Google Play via the
Messenger/Handler mechanism. This was basically how the
Messen
Can you say, how must i convert 2550136836 to int?
--
View this message in context:
http://mono-for-android.1047100.n5.nabble.com/Unsafe-code-support-tp5711421p5711577.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodr
Atsushi Eno wrote
>
> Today I made some changes in our toolchain and found that the reason why
> it could not load the type was due to missing reference to support-v4.jar.
>
> Now I added it to monodroid-samples/ActionBarSherlock sample and it
> successfully built SherlockFragmentActivity.
>
You can't, because it falls outside the range of a 32-bit signed
integer (–2,147,483,648
to 2,147,483,647).
On 28 August 2012 14:29, Александр wrote:
> Can you say, how must i convert 2550136836 to int?
>
>
___
Monodroid mailing list
Monodroid@lists.xi
Atsushi Eno wrote
>
> hwrdprkns wrote:
>> Jonathan Pryor-2 wrote
I am using the MonoDroid sample for ActionBarSherlock located here, but
I
haven't been able to get to the SherlockFragmentActivity.
>>> The type isn't being bound because the type can't be processed:
>>>
>>>
>>> http:
You can take a look at my action bar project. I have a fragment sample in
there with tabs. It is very simple, but might help.
https://github.com/jamesmontemagno/MonoDroid.ActionBar
On Aug 27, 2012 2:20 PM, "dickies" wrote:
> That's great to know Jon, thanks.
>
> Bit of of a re-write to do!
>
>
>
Damn, I was hoping you would get further :-)
It surprises me that so little is talked about in-app billing. I remember
reading that out of the top 20 Android apps, 18 of them use in-app billing
to generate their sales. Now with subscriptions it would indicate that this
is a vital revenue stream fo
On Mon, Aug 27, 2012 at 11:20 AM, deborazb wrote:
> I tried to install Mono for Android many times and I couldn't get it right.
> If you have any thoughts...
> Thanks!
>
Hi Deborazb,
All your prerequisites are fine, but the installer has a problem when
installing the VisualStudio components. Th
On Mon, Aug 27, 2012 at 9:29 PM, Александр wrote:
> Can you say, how must i convert 2550136836 to int?
>
Use a long (int64) instead of an int (int32), if you can.
-Max
--
Hahahah!!! That is ME laughing at YOU, cruel world.
-Jordan Rixon
I could not love thee, dear, so much,
Loved I
30 matches
Mail list logo