Re: [mono-android] Upgrade to 4.7

2013-05-23 Thread Paul Johnson

Hi,


I'm running Xamarin Android 4.6 and want to upgrade to 4.7 but Visual Studio
is not detecting that an upgrade is available.

Can someone provide a direct link, ideally to the latest stable version?


4.7 is currently only available in the alpha channel. To get it, all you 
need do is change channel!


Paul
--
"Space," it says, "is big. Really big. You just won't believe how 
vastly, hugely, mindbogglingly big it is. I mean, you may think it's a 
long way down the road to the chemist's, but that's just peanuts to 
space, listen..."

Hitch Hikers Guide to the Galaxy, a truly remarkable book!

___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] Time out on async task with the 4.6 release

2013-05-23 Thread Sayed Arian Kooshesh
also you could set this

http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.timeout.aspx


On Mon, May 20, 2013 at 1:52 PM, Jonathan Pryor  wrote:

> On May 20, 2013, at 8:19 AM, Paul Johnson 
> wrote:
> > Using the current stable version of monodroid, is there a way to add a
> timeout to an async task.
>
> Which Task? Android.OS.AsyncTask or System.Threading.Tasks.Task?
>
> For TPL, this might be handy:
>
> http://blogs.msdn.com/b/pfxteam/archive/2011/11/10/10235834.aspx
>
>  - Jon
>
> ___
> Monodroid mailing list
> Monodroid@lists.ximian.com
>
> UNSUBSCRIBE INFORMATION:
> http://lists.ximian.com/mailman/listinfo/monodroid
>



-- 
Extreme Knowledge is not something for which he programs a computer but for
which his computer is programming him.

-Wozniak


   - if my programming advice has helped you, feel free to donate to :




___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] Unit Testing for MonoDroid

2013-05-23 Thread Manski
Hi Alex,

I wrote the runner myself. Basically, it executes the tests directly on the
phone/emulator. There's no integration in VS or any other IDE. The results
will be displayed on the phone. Of course, you can attach a debugger to the
process.

Regards,
Sebastian



--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/Unit-Testing-for-MonoDroid-tp5710844p5713334.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] Detecting Network connectivity state changes

2013-05-23 Thread IdleBinaries
This is a pretty old post, but I'll throw my solution down in case it's
useful to someone else.

I have a class that handles getting the status of the network connection and
making a Boolean and enum value public to the rest of the app: bool
Connected & ConnectivityState State;

In this class there is a public method GetStatus() that basically sets the
value of Connected and State and raises an event StatusUpdated().

In the Activity I register the receiver and listen for the StatusUpdated
event:

...
RegisterReceiver (new NetworkReceiver (), new IntentFilter
(ConnectivityManager.ConnectivityAction));
AppData.Connectivity.StatusUpdated += NetworkStatusUpdated;
...
private void NetworkStatusUpdated ()
{
if (!AppData.Connectivity.Connected) 
{
FindViewById
(Resource.Id.connectivity_image).SetImageResource 
(Resource.Drawable.network_off);
FindViewById (Resource.Id.connectivity_state).Text = "No
Network Connection";
}
else
{
FindViewById
(Resource.Id.connectivity_image).SetImageResource
(Resource.Drawable.network_on);
//
switch (AppData.Connectivity.State) 
{
case ConnectivityState.Roaming:
FindViewById (Resource.Id.connectivity_state).Text = 
"Roaming";
break;
//
case ConnectivityState.WiFi:
FindViewById (Resource.Id.connectivity_state).Text = "WiFi";
break;
//
default:
FindViewById (Resource.Id.connectivity_state).Text = 
"Connected";
break;
}
}
}
...

The broadcast receiver:

...
[BroadcastReceiver]
public class NetworkReceiver : BroadcastReceiver
{
public override void OnReceive (Context context, Intent intent)
{
AppData.Connectivity.GetStatus ();
}
}
...

Now the intent is received by NetworkReceiver when the network connection is
changed, this triggers the NetworkConnectivity class I created to refresh
the status of the network connection and fire the event StatusUpdated, which
is caught by the Activity and allows it to update it's views.

I've tested this and it works nicely, hope it helps someone else trying to
get their head around the problem.



--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/Detecting-Network-connectivity-state-changes-tp4394070p5713335.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] Is it possible to create a special layout on the fly?

2013-05-23 Thread Sayed Arian Kooshesh
On Tue, May 21, 2013 at 11:28 AM, Paul Johnson
wrote:

> Hi,
>

i don't have an answer for this one, i wish you could just write a layout
and eval it. so much simpler!


-- 
Extreme Knowledge is not something for which he programs a computer but for
which his computer is programming him.

-Wozniak


   - if my programming advice has helped you, feel free to donate to :




___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] MIPS arch support

2013-05-23 Thread Igor Russkih
Hi Jon,

Is there any news on MIPS? There is a steady raising demand for MIPS
devices...

  Igor


On Wed, Apr 25, 2012 at 7:30 AM, Jonathan Pryor  wrote:

> On Apr 25, 2012, at 10:11 AM, Igor Russkih wrote:
> > Are there any plans/dates for the introduction of MIPS arch support?
>
> At present, this will probably be a Mono for Android 5.0 feature, as we'll
> need to rebase atop Mono 2.12/3.0 in order to get MIPS JIT support, and
> Mono 2.12 isn't even out yet. (Plus the rebase will likely be
> destabilizing, etc.)
>
> There is no concrete timeframe.
>
> (This isn't set in stone, "plans" subject to change w/o notice, etc., etc.
> depending on perceived demand for MIPS support...)
>
>  - Jon
>
> ___
> Monodroid mailing list
> Monodroid@lists.ximian.com
>
> UNSUBSCRIBE INFORMATION:
> http://lists.ximian.com/mailman/listinfo/monodroid
>
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] How to change the network state of device?

2013-05-23 Thread Domanet
With all the changes to mono for android can this be done without a external
dll?



--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/How-to-change-the-network-state-of-device-tp5711776p5713342.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


[mono-android] New Launch 2D Game “Night Runner” (Coming Soon)

2013-05-23 Thread runpandarun
Hi

Take a seat and start shining with our “Night Runner” look. “Night Runner”
keeps your gaming experience fun and fresh !!The game has fantastic
features, including awesome graphics, controls and a unique upgrading
system. The game story is very interesting.

"Alex",  He's A Hero Of This Game.
“Luka”, Enemy of Alex.
 
 

If you really want to play that game, please feel free to comment on it.

For more detail like:- http://www.facebook.com/creatiosoft
   http://twitter.com/creatiosoft




--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/New-Launch-2D-Game-Night-Runner-Coming-Soon-tp5713343.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid