Re: [android-developers] New to android development

2012-08-22 Thread Justin Anderson
A little bird told me about this great new thing called a Google search...
Supposedly there is this nifty company out there that makes searching the
internet extremely intuitive and easy...  I wonder if they'll be able to
make it popular enough though to really catch on...

Try something like, oh I don't know,  android out.xml error or something
like that.

Thanks,
Justin Anderson
MagouyaWare Developer
http://sites.google.com/site/magouyaware


On Sat, Aug 18, 2012 at 3:21 PM, Saudademaru Envy saudadema...@gmail.comwrote:

 So I have the android SDK and eclipse and I wanted to try to make my first
 app.  Of course I followed the directions on the lessons about starting the
 hello world, then the one after that.  Well now I can't seem to make
 anything.  When I start something new, I may change some names of the
 activity, app name and stuff just to something different and as soon as the
 app is created it should be a simple hello world but I can't seem to
 compile it or test it.  As soon as I try it gives me an error having to do
 with the layout xml file.  It creates another one with the same name but
 also with a .out before the .xml then it tells me it is already defined.
  Does anyone know what the problem is?  I will post a link so you can
 download my source files to check.  It also says no xml content but my
 original file did have content.  I even tried the one where we make a text
 box and button but it still says that for some reason

 https://docs.google.com/open?id=0B4I48TCTXOKFQ1k0ekZZc2VLWDg

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] New to android development

2012-08-19 Thread Saudademaru Envy
So I have the android SDK and eclipse and I wanted to try to make my first app. 
 Of course I followed the directions on the lessons about starting the hello 
world, then the one after that.  Well now I can't seem to make anything.  When 
I start something new, I may change some names of the activity, app name and 
stuff just to something different and as soon as the app is created it should 
be a simple hello world but I can't seem to compile it or test it.  As soon as 
I try it gives me an error having to do with the layout xml file.  It creates 
another one with the same name but also with a .out before the .xml then it 
tells me it is already defined.  Does anyone know what the problem is?  I will 
post a link so you can download my source files to check.  It also says no xml 
content but my original file did have content.  I even tried the one where we 
make a text box and button but it still says that for some reason

https://docs.google.com/open?id=0B4I48TCTXOKFQ1k0ekZZc2VLWDg

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] New to Android Development

2011-09-30 Thread Mike L.
I have recently got a Samsung LS6410 project board, and I was
wondering how I can access all the different pins on the board in the
Android programs. I have expereance using C for microproccesor
programing. Is this done in the same way using Android Java.

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] New to android development

2011-04-07 Thread Rajah
Hi I'm new to android development.
I would like to develop database(SQLite) application.
There got ang guide or reference.

Tq
Regard
T.Kanagarajah

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] New to android development

2011-04-07 Thread Kristopher Micinski
Rajah,

There are many references for database development using SQLite. Generally
your database will be wrapped in a ContentProvider. Try googling SQLite
android.  You probably won't directly use it, however, so also read the
Content Provider section in the android tutorial.

Really, the android introduction tutorial is quite well written and brings
you up to speed with many concepts very quickly. You should read all of it
soon if you want to become a serious application developer.

Kris

On Thu, Apr 7, 2011 at 12:15 AM, Rajah kraja...@gmail.com wrote:

 Hi I'm new to android development.
 I would like to develop database(SQLite) application.
 There got ang guide or reference.

 Tq
 Regard
 T.Kanagarajah

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] New to android development

2011-04-07 Thread Kristopher Micinski
(Let me add a comment, when I said you probably won't directly use it, I
meant you will be using it *within* a content provider, which will certainly
use the android.database.sqlite classes to do things like insertion, lookup,
etc... Your activities will then call to this content provider)

Kris

On Thu, Apr 7, 2011 at 11:11 PM, Kristopher Micinski krismicin...@gmail.com
 wrote:

 Rajah,

 There are many references for database development using SQLite. Generally
 your database will be wrapped in a ContentProvider. Try googling SQLite
 android.  You probably won't directly use it, however, so also read the
 Content Provider section in the android tutorial.

 Really, the android introduction tutorial is quite well written and brings
 you up to speed with many concepts very quickly. You should read all of it
 soon if you want to become a serious application developer.

 Kris


 On Thu, Apr 7, 2011 at 12:15 AM, Rajah kraja...@gmail.com wrote:

 Hi I'm new to android development.
 I would like to develop database(SQLite) application.
 There got ang guide or reference.

 Tq
 Regard
 T.Kanagarajah

 --
 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...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
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...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en