Re: [android-developers] Re: New to Android

2013-05-03 Thread TreKing
On Fri, May 3, 2013 at 10:30 AM, bob b...@coolfone.comze.com wrote: You will want to put your code in a file called beta.java. Then you can add this to your onCreate function: * * *beta.main(null);* * * That's a joke, right?

Re: [android-developers] Re: New to Android App Development need Advice in Designing UI

2012-10-17 Thread Anees Thyrantakath
Thanks for the information..i'll check it out -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

RE: [android-developers] Re: new to android

2011-05-25 Thread Tommy
@googlegroups.com [mailto:android-developers@googlegroups.com] On Behalf Of Ali Chousein Sent: Wednesday, May 25, 2011 4:37 PM To: Android Developers Subject: [android-developers] Re: new to android http://developer.android.com/sdk/index.html Everything is explained on this web site. Good luck and enjoy

Re: [android-developers] Re: New to Android Need Help

2011-04-22 Thread TreKing
On Fri, Apr 22, 2011 at 2:10 AM, edprog edwin...@gmail.com wrote: but now i need to figure out how to make the images swap on their own when the system is playing Did you need help on that or are you just typing out loud?

Re: [android-developers] Re: New to Android Need Help

2011-04-22 Thread TreKing
On Fri, Apr 22, 2011 at 2:42 PM, edprog edwin...@gmail.com wrote: Now just one question do you recommend to create the Thread in the main Activity or do it in a separate class? Actually, neither. Don't use raw Threads unless you really have to. I don't think you really have to here. See this

Re: [android-developers] Re: New to Android Need Help

2011-04-21 Thread TreKing
On Thu, Apr 21, 2011 at 8:47 PM, edprog edwin...@gmail.com wrote: Basically I would like to draw from myView class and not from the main Activity, right now I have the OnTouch events in the main Activity as you can see, I want to move all that code (The ontiuch) to myView class. You're

Re: [android-developers] Re: New to Android Need Help

2011-04-21 Thread TreKing
On Thu, Apr 21, 2011 at 11:46 PM, edprog edwin...@gmail.com wrote: I understand java, inheritance, creating classes... If you say so. No offense, but the fact that you called your own code a mess and the fact that you copied and pasted the exact same code 4 times instead of making a class

Re: [android-developers] Re: New to Android Need Help

2011-04-21 Thread TreKing
On Fri, Apr 22, 2011 at 12:30 AM, edprog edwin...@gmail.com wrote: public class myView extends View implements OnTouchListener{} Sure. Or a member in the Activity that you then set on the ImageViews. private mTouchListener = new OnTouchListener() { /* CODE */ } ...

Re: [android-developers] Re: New to Android and programming

2010-08-24 Thread TreKing
On Tue, Aug 24, 2010 at 11:22 AM, msacks ntw...@gmail.com wrote: The best way to learn, is by doing, as in just write apps with no prior experience. If no prior experience means you have never programmed, you've never heard of Eclipse, and you haven't touched the SDK, you're simply not going

Re: [android-developers] Re: New to android finally leaving Windows !!!

2010-08-18 Thread Phill Wiggin
On Thu, Aug 5, 2010 at 4:48 AM, String sterling.ud...@googlemail.comwrote: On Aug 4, 8:51 pm, Tommy droi...@gmail.com wrote: Why should a user have to go out of the way to figure out how to use ADB to do this. A user shouldn't have to. I absolutely agree with you, and think it's pretty

RE: [android-developers] Re: New to android finally leaving Windows !!!

2010-08-04 Thread Tommy
To: Android Developers Subject: [android-developers] Re: New to android finally leaving Windows !!! I would recommend the Captivate. It's Hummingbird processor is very nice (basically the same as what is in the IPhone 4... samsung sold them their chips as I understand it... though the IPhone 4 SOC

Re: [android-developers] Re: New to android finally leaving Windows !!!

2010-08-04 Thread Mark Murphy
On Wed, Aug 4, 2010 at 2:40 PM, A Curious Developer imdb...@yahoo.com wrote: Can we use *any* Android-based phone for testing and debugging? Any that has the Android Market on it should be safe. That is, can we download, run, and debug our applications from the Eclipse environment? See

RE: [android-developers] Re: New to android finally leaving Windows !!!

2010-08-04 Thread Tommy
...@googlegroups.com] On Behalf Of String Sent: Wednesday, August 04, 2010 3:24 PM To: Android Developers Subject: [android-developers] Re: New to android finally leaving Windows !!! On Aug 4, 6:41 pm, Tommy droi...@gmail.com wrote: BUT ATT had to go in and fiddle with everything totally locking down

Re: [android-developers] Re: New to android finally leaving Windows !!!

2010-08-04 Thread Mark Murphy
On Wed, Aug 4, 2010 at 3:24 PM, String sterling.ud...@googlemail.com wrote: I'm no friend of ATT, and am as disappointed as anyone about the restrictions they've put on all their Android phones to date, but please get your facts straight before launching into a rant. They've only disabled

Re: [android-developers] Re: New to android finally leaving Windows !!!

2010-08-04 Thread Shane Isbell
You really need at least two devices for testing. High-end 2.1+ devices and a pre-2.0 device. I find that the emulator does a good job of matching pre-2.0 device behavior but you can get really burned trusting the emulator to behave the same for the later devices. I've found differences between

Re: [android-developers] Re: New to android

2010-03-30 Thread Prasanjit Deka
just go to *developer*.*android*.com where u can get details and basic knowlege of android On Tue, Mar 30, 2010 at 11:56 AM, patbenatar patbena...@gmail.com wrote: Yea... Check out the tutorials and API Demos under the Resources tab. Great starting point. On Mar 29, 12:30 pm, Felipe

Re: [android-developers] Re: New to Android...how does android handle application versions/updates...

2010-03-02 Thread Mark Murphy
MaTT wrote: Okay, great! So, if I needed to make changes to the existing database, would I need to perform any kind of backup of the old database? If you use SQLiteOpenHelper to assist you, you will be notified when your database schema differs from the schema your upgraded app wants to use.