[android-beginners] Wiki for snippets?

2010-05-01 Thread Casper Bang
Is there an official wiki or somewhere for the community to add snippets? I continue to find less than ideal sample code as well as lacking documentation. For instance just did some Threading work in an app, but is unable to find out what the boolean return value for the

[android-beginners] Re: Wiki for snippets?

2010-05-01 Thread Casper Bang
Thank you Mark. Had not run into andmob.org, you sure are a busy guy! /Casper On May 1, 6:13 pm, Mark Murphy mmur...@commonsware.com wrote: Casper Bang wrote: Is there an official wiki or somewhere for the community to add snippets? Official? No. There ishttp://androidsnippets.org

[android-beginners] Re: Android 2.1 SDK

2010-01-13 Thread Casper Bang
SDK using the SDK Setup, correct? Ryan On Tue, Jan 12, 2010 at 7:48 AM, Casper Bang casper.b...@gmail.com wrote: Thanks Sean, but have you actually tried looking what can be found at http://dl-ssl.google.com/android/eclipse/? cas...@workstation:~$ wgethttp://dl-ssl.google.com/android

[android-beginners] Re: Android 2.1 SDK

2010-01-12 Thread Casper Bang
:01 AM, Casper Bang casper.b...@gmail.com wrote: It says here [http://developer.android.com/sdk/eclipse-adt.html] to add Android support to Eclipse by adding the following URL: https://dl-ssl.google.com/android/eclipse/ However not much is happening. Indeed, navigating the above URL results

[android-beginners] Re: Android 2.1 SDK

2010-01-11 Thread Casper Bang
It says here [http://developer.android.com/sdk/eclipse-adt.html] to add Android support to Eclipse by adding the following URL: https://dl-ssl.google.com/android/eclipse/ However not much is happening. Indeed, navigating the above URL results in a 404. What gives... is this deprecated

[android-beginners] Re: How to load the developer image under a rooted G1?

2009-09-08 Thread Casper Bang
http://www.htc.com/www/support/android/adp.html /Casper On 8 Sep., 18:39, Marcio David mfda...@gmail.com wrote: Hi all. I got a G1 with root access running the Cyagonen image. But this image is a little unstable and not official, and I would like to run the official developer edition of

[android-beginners] Re: C# on Android

2009-09-03 Thread Casper Bang
Koushik Dutta has at least partly got it to run on Android. I don't know how active he is pursuing this, but you can check out his project on github: http://github.com/koush/androidmono/tree/master /Casper On 3 Sep., 14:27, Cao akudo...@gmail.com wrote: Hi everybody, My name is Cao I'm

[android-beginners] Re: HTC Question

2009-09-03 Thread Casper Bang
If you tell us where you bought it, we can infer it for you. However you may also simply shut down your phone and then turn it on again by holding down Back + Power. This will lead you to the fastboot console where you can read the info. To exit from there again, press the Menu button. Rooting

[android-beginners] Re: Cheapest way to acquire a development phone?

2009-08-25 Thread Casper Bang
Search on ebay or wait a few months, as current owners of the HTC Magic with 6 month contract (like me), will want to move on to newer devices. /Casper On 24 Aug., 21:01, Ron ronbruck...@comcast.net wrote: I need an actual Google phone with GPS to get some idea of what applications are out

[android-beginners] Re: What is really locked in the HTC Magic?

2009-08-19 Thread Casper Bang
://www.xda-developers.com/ /Casper On 19 Aug., 12:30, Rafa Perfeito rafa.perfe...@gmail.com wrote: Thanks Casper, But my doubt is what the 'lock' means. Only SIM-unlocked? 'Cause i can unlock that...Then i will have the same liberty as in the Dev Phone? On Tue, Aug 18, 2009 at 7:37 PM, Casper Bang

[android-beginners] Re: What is really locked in the HTC Magic?

2009-08-19 Thread Casper Bang
in many countres. -- Best Regards, Atif Gulzar I Unicode, ɹɐzlnƃ ɟıʇɐ On Wed, Aug 19, 2009 at 4:58 PM, Casper Bang casper.b...@gmail.comwrote: I guess it depends of the context of the world 'lock'. Although the Scandinavian isn't, I believe most stock phones (certainly the carrier

[android-beginners] Re: What is really locked in the HTC Magic?

2009-08-18 Thread Casper Bang
I was in the same situation, so I bought a Magic and installed another SPL (bootloader) as well as rooted it. With a stock Magic SPL you are unable to install unsigned Android images, as that's reserved for Google. But if you just want to develop simple Android/Java applications, you do not need

[android-beginners] Re: Newbie to Java needing some help!

2009-08-09 Thread Casper Bang
Your problem is a classic one in Java, on this line: if (silenceron = true) /** If the Silencer is on this ...you are effectively testing whether you can assign the boolean value true to silenceon, which you always can (hence it's always true). Add another equals to test whether sileneron is

[android-beginners] Re: Why XML to define layouts/components?

2009-08-07 Thread Casper Bang
section. On Aug 6, 12:29 pm, Casper Bang casper.b...@gmail.com wrote: My original first post doesn't seem to get approved, so let me try again. :) I'm wondering whether other Android newbies than me find the empathy on XML layout troublesome? I realize we should strive to separate view

[android-beginners] Re: Why XML to define layouts/components?

2009-08-07 Thread Casper Bang
Thanks guys, I now understand the empathy on XML a little better. :) /Casper On 8 Aug., 00:12, Mark Murphy mmur...@commonsware.com wrote: Casper Bang wrote: It wasn't until I found Mark Murphy's The Busy Coder's Guide to Android Development that I starting feeling a bit more comfortable

[android-beginners] Why XML to define layouts and components?

2009-08-06 Thread Casper Bang
I'm wondering whether other Android newbies than me find the empathy on XML layout troublesome? I realize we should strive to separate view from logic and that XML is hip and trendy, but is it really necessary for these relatively simple Android applications? XML layouts involves more files and

[android-beginners] Re: Why XML to define layouts and components?

2009-08-06 Thread Casper Bang
XML is used to be able to have resources for different configurations: landscape, portrait, high dpi, French, etc. It has nothing to with being hip and trendy. Oh ok. I was under the assumption we're dealing with the same component tree, regardless of it being set up declaratively (XML) or