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

2013-05-03 Thread TreKing
On Fri, May 3, 2013 at 10:30 AM, bob 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-16 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 android-developers+unsubscr

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

2011-05-25 Thread Tommy
It would also help to have an understanding of Java or at least some type of OOP experience... If you have none I'd start with learning some basics of java and OOP. Or if you are a fast learner just go through the tutorials and examples. -Original Message- From: android-developers@googleg

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

2011-04-22 Thread TreKing
On Fri, Apr 22, 2011 at 2:42 PM, edprog 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 article: http:/

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

2011-04-22 Thread TreKing
On Fri, Apr 22, 2011 at 2:10 AM, edprog 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-21 Thread TreKing
On Fri, Apr 22, 2011 at 12:30 AM, edprog 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 */ } ... imageView1.setOnTouchListener(mTouchListene

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

2011-04-21 Thread TreKing
On Thu, Apr 21, 2011 at 11:46 PM, edprog 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 would indicate that

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

2011-04-21 Thread TreKing
On Thu, Apr 21, 2011 at 8:47 PM, edprog 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 missing the fact tha

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

2010-08-24 Thread TreKing
On Tue, Aug 24, 2010 at 11:22 AM, msacks 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 to jump stra

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 wrote: > On Aug 4, 8:51 pm, "Tommy" 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 crappy of AT&T to have done this. > >

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 the

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 wrote: > I'm no friend of AT&T, 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 installing non-Market apps us

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

2010-08-04 Thread Tommy
I realize that you can push apps to the phone but you shouldn't have to, that is the point of my rant. Why should a user have to go out of the way to figure out how to use ADB to do this. -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.

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 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 above. > Can we do

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

2010-08-04 Thread Tommy
STAY AWAY FROM AT&T WITH ANDROID IF YOU CAN!!! I currently own the HTC Aria with AT&T. Don't get me wrong HTC makes great phones I love the aria. BUT AT&T had to go in and fiddle with everything totally locking down their android phones just like an IphoneWhats the point? Unless you feel li

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 wrote: > Yea... Check out the tutorials and API Demos under the Resources tab. > Great starting point. > > > > On Mar 29, 12:30 pm, Felipe Silveira wrote: > >

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