[android-beginners] Re: Android Targets

2008-09-23 Thread Casey Borders
Android is not meant to install on those platforms, it is meant to be a replacement for those platforms. As for putting Android on a device that didn't come with it, you will have to reflash the ROM chip, which, if done improperly, can trash the device. And seeing as how it would also void your

[android-beginners] Re: New Tmobile G1

2008-09-23 Thread Casey Borders
Check this out! http://code.google.com/android/adc_gallery/ On Tue, Sep 23, 2008 at 11:51 PM, Henry <[EMAIL PROTECTED]> wrote: > > Hey I pre-ordered the new tmobile g1 phone and I am very excited with > the way the Android softwares are so open to new things unlike apples > stuff where they have

[android-beginners] re HelloActivity / HelloAndroid

2008-09-23 Thread jelizondo
I have a problem running the example HelloAndroid in the Getting Started section and curiously the same problem running the HelloActivity in the samples directory. I have followed the instructions precisely as given to create the new project and import the existing project. In both cases when ru

[android-beginners] New Tmobile G1

2008-09-23 Thread Henry
Hey I pre-ordered the new tmobile g1 phone and I am very excited with the way the Android softwares are so open to new things unlike apples stuff where they have to control everything and make it hard for people to do anything. I was wondering if there is a place where I can shop for these softwar

[android-beginners] Android Targets

2008-09-23 Thread Inam Jameel
Hi to all i m new in mobile application development. i want to know which mobiles can support Android. according to my research on mobile platforms there are currently 5 major platforms including, Blackberry, Windows Mobile, Symbian, iPhone etc. please inform me about the target areas of Android.

[android-beginners] Re: both sdks

2008-09-23 Thread Sudha
I am using eclipse 3.3 for older sdk and 3.4 for 0.9 in my case its working fine On Sep 23, 8:56 pm, steelerfan <[EMAIL PROTECTED]> wrote: > Before I mess something uphave you done this or what makes you so > sure.  Its not possible that something in the Registry will be > overwritten or e

[android-beginners] Re: Emulator starts but HelloAndroid doesn't run

2008-09-23 Thread bsnelson
On Sep 23, 8:39 pm, "Xavier Ducrohet" <[EMAIL PROTECTED]> wrote: > You are using the Eclipse plugin version 0.8.0 that was released to be > used by the new SDK 1.0. > > The problem is that the name of the HOME process changed between 0.9 > and 1.0 so the Eclipse plugin never sees it being launched

[android-beginners] Re: Emulator starts but HelloAndroid doesn't run

2008-09-23 Thread Xavier Ducrohet
You are using the Eclipse plugin version 0.8.0 that was released to be used by the new SDK 1.0. The problem is that the name of the HOME process changed between 0.9 and 1.0 so the Eclipse plugin never sees it being launched on the emulator. Please update to the new SDK, so that Eclipse properly

[android-beginners] Re: Emulator starts but HelloAndroid doesn't run

2008-09-23 Thread bsnelson
On Sep 23, 5:50 pm, "Mark Murphy" <[EMAIL PROTECTED]> wrote: > > I resolved (?) the build error I had in my previous post, and my > > HelloAndroid project seems to build now, but when I try to run it in > > the emulator, it doesn't work. Specifically, the emulator boots and > > goes to the "keyboa

[android-beginners] Re: Emulator starts but HelloAndroid doesn't run

2008-09-23 Thread Mark Murphy
> I resolved (?) the build error I had in my previous post, and my > HelloAndroid project seems to build now, but when I try to run it in > the emulator, it doesn't work. Specifically, the emulator boots and > goes to the "keyboard locked" screen and, in general, behaves > normally, but without ru

[android-beginners] Emulator starts but HelloAndroid doesn't run

2008-09-23 Thread bsnelson
I resolved (?) the build error I had in my previous post, and my HelloAndroid project seems to build now, but when I try to run it in the emulator, it doesn't work. Specifically, the emulator boots and goes to the "keyboard locked" screen and, in general, behaves normally, but without running my c

[android-beginners] Re: R cannot be resolved

2008-09-23 Thread Kah0ona
Yes, I got the same problem. Also just downloaded the Android SDK and ADT, working in Eclipse 3.2... The R.java file isn't generated appearantly... Any ideas? On Sep 23, 7:27 pm, agrawalswap <[EMAIL PROTECTED]> wrote: > Hi, > > I just d/l the Android sdk and ADT. > I created a new android projec

[android-beginners] Re: R cannot be resolved

2008-09-23 Thread Kah0ona
I have exactly the same problem. Also just downloaded it today, as you did appearantly. The R.java file is not (re)generated... On Sep 23, 7:27 pm, agrawalswap <[EMAIL PROTECTED]> wrote: > Hi, > > I just d/l the Android sdk and ADT. > I created a new android project in eclipse as per documentatio

[android-beginners] Problems trying to compile "Hello, Android"

2008-09-23 Thread bsnelson
I'm using Eclipse 3.4 with the Android SDK, and I'm trying to run the "Hello, Android" sample. I made the changes to my HelloAndroid.java (and checked it several times), but I keep getting two errors when I try to build: ERROR No resource identifier found for attribute 'versionCode' in package 'a

[android-beginners] Android 1.0 SDK Released

2008-09-23 Thread Megha Joshi
Hi everyone, We're pleased to announce the release of the Android 1.0 SDK, release 1. For full information, please see Dan Morrill's blog post: http://android-developers.blogspot.com/2008/09/announcing-android-10-sdk-release-1.html SDK Download: http://code.google.com/android/download.htm

[android-beginners] Re: R cannot be resolved

2008-09-23 Thread Xavier Ducrohet
If you had to add the android.jar manually, then you did not create the project properly. Always use the Android New Project wizard to create android project. You should be able to convert your standard java project into an android project by doing: - right click your project in the package expl

[android-beginners] R cannot be resolved

2008-09-23 Thread agrawalswap
Hi, I just d/l the Android sdk and ADT. I created a new android project in eclipse as per documentation and selected one of the sample project. I also added the Android.jar as external jar file. But I still get 'R cannot be resolved' error during my build. Any pointers as to how I can fix this

[android-beginners] Re: Identifying the android screen mode (landscape/portrait)

2008-09-23 Thread [EMAIL PROTECTED]
Oh, thnx Phil... It works good... On Sep 20, 6:56 am, Phil <[EMAIL PROTECTED]> wrote: > Hi. > > You could use the following to determine the screen resolution from > within your Activity/Context... > > getWindow().getWindowManager().getDefaultDisplay().getHeight() > getWindow().getWindowManager()

[android-beginners] Re: .Net support

2008-09-23 Thread David.Dyball
The short answer would be "no": .NET is, by default a Windows only library. Android is a Java Virtual Machine running on top of linux. Writing .NET code and trying to do anything with it on android is a good way to get frustrated. The long answer: "sort of" .NET has been ported to Linux in the fo

[android-beginners] Using Intents to Open Specific Files

2008-09-23 Thread David.Dyball
Hi All, I'm following a great tutorial from AndDev.org (http://www.anddev.org/ viewtopic.php?t=67) where it shows you how to make a simple File Browser. There were a lot of instances where the code needed small modifications to run on SDK-0.9, but there is one part that I am stuck on. Opening se

[android-beginners] Re: .Net support

2008-09-23 Thread David.Dyball
Not at this stage. With .NET being primarily a Windows development platform, I don't think that it will become available on a Java-based, Linux platform any time soon. There are Linux .Net interpreters out there (Mono), but I doubt they would run on such embedded platforms... though I could be wro

[android-beginners] Re: database tool

2008-09-23 Thread Harijadi Witaria
Test On 9/23/08, AndreAgosto <[EMAIL PROTECTED]> wrote: > > ok, Very thanks i discovered this way. So i think is not possible to > work directly on db in emulator, right? It would be very useful.. > > On Sep 23, 2:19 pm, Mark Murphy <[EMAIL PROTECTED]> wrote: >> AndreAgosto wrote: >> > No, no, so

[android-beginners] Re: both sdks

2008-09-23 Thread steelerfan
Before I mess something uphave you done this or what makes you so sure. Its not possible that something in the Registry will be overwritten or elsewhere. i.e. Java libraries Thanks! On Sep 23, 7:02 am, Sudha <[EMAIL PROTECTED]> wrote: > Yes..sure > > On Sep 23, 2:05 am, Greg Molnar <[EMA

[android-beginners] Using Intents to Open Specific Files

2008-09-23 Thread David.Dyball
Hi All, First post! Yay. I don't really understand the concepts behind Intent/Context/Actions etc, so to learn something I thought I would follow the tutorials over @ AndDev.org to create a basic File Browser application. The code was written for the previous SDK so I had to modify it a little t

[android-beginners] Androids mobile suite

2008-09-23 Thread [EMAIL PROTECTED]
Hi guys!!! I want to replace the software plataform of my Mobile phone (Nokia 6300) and run the Androids´s but im not a familiar whit any web lenguage in order to develop my own version . There´s any chanse to download a mobile suite in my terminal whit all the google modules ? In the other hand

[android-beginners] trouble installing SDK

2008-09-23 Thread Michael Potter
G'day Having a bit of trouble installing the Android Plugin for Eclipse (ADT). I have followed the steps as per the guide, and everything seems to work fine up until Eclipse restarts. When I go to 'windows\preferences' to configure the path of the SDK, I cant see any link for Android. When I chec

[android-beginners] Re: Could not find HelloAndroid.apk!

2008-09-23 Thread 1999 crack
2008/9/23 patrick91 <[EMAIL PROTECTED]> > > Yes I did :) > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-beginners@googlegroups.com To unsu

[android-beginners] Re: Setup Intent for viewing photo

2008-09-23 Thread [EMAIL PROTECTED]
I have exactly the same issue. I want to pass a file to an Intent and have android figure out the file-type and open it with the relevant application. I tried the following constructor for the intent: Intent myIntent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("file://"+aF

[android-beginners] Using Intents to Open Files

2008-09-23 Thread [EMAIL PROTECTED]
Hi All, I don't really understand the concepts behind Intent/Context/Actions etc, so to learn something I thought I would follow the tutorials over @ AndDev.org to create a basic File Browser application. The code was written for the previous SDK so I had to modify it a little to get it to work a

[android-beginners] Re: Error Message when setting SDK location in Eclipse

2008-09-23 Thread lemms
On Sep 22, 8:18 pm, lemms <[EMAIL PROTECTED]> wrote: > Hi! > > I noticed that whenever I try to set SDK location under Windows -> > Preferences, it will show the following message in my terminal. > > Exception in thread "Thread-2" > java.lang.NoSuchMethodError:org.osgi.framework.Bundle.start(I)

[android-beginners] Re: Is it feasible....?

2008-09-23 Thread jtaylor
Developing an app on Android using GPS and maps is partially what Android is all about. The G1 just came out today, so you can try and get one and use that to demonstrate your app. http://announcement.t-mobileg1.com/ - Juan T. On Sep 23, 9:47 am, jaideep <[EMAIL PROTECTED]> wrote: > hi, > i m

[android-beginners] Re: Eclipse ADT plugin Install Notice

2008-09-23 Thread Joseph katende
Thanks so much I did figure it out and I'm up and running. On Tue, Sep 23, 2008 at 6:34 AM, hongqing huang <[EMAIL PROTECTED]>wrote: > First ,you should install the JDK 1.6 ,then download the zip file from > www.eclipse.org,choose the right version for your OS,then unzip the > zipfile ,there is

[android-beginners] Re: database tool

2008-09-23 Thread Mark Murphy
AndreAgosto wrote: > ok, Very thanks i discovered this way. So i think is not possible to > work directly on db in emulator, right? It would be very useful.. http://www.jsharkey.org/blog/2008/09/11/quick-database-row-editor-in-android-09-sdk/ I'm sure there will be a few SQLite clients available

[android-beginners] Re: database tool

2008-09-23 Thread AndreAgosto
ok, Very thanks i discovered this way. So i think is not possible to work directly on db in emulator, right? It would be very useful.. On Sep 23, 2:19 pm, Mark Murphy <[EMAIL PROTECTED]> wrote: > AndreAgosto wrote: > > No, no, sorry, you are right, SQLite database. > > I installed firefox plugin

[android-beginners] Re: Could not find HelloAndroid.apk!

2008-09-23 Thread patrick91
Yes I did :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTE

[android-beginners] Is it feasible....?

2008-09-23 Thread jaideep
hi, i m new to android and i like to develop an application on it using GPS technology and maps as my final year project ... any suggestions or advice regarding the topic and the duration required to develop an application using these technologies ...and is it feasible?I like to develop a demonstr

[android-beginners] Re: database tool

2008-09-23 Thread Mark Murphy
AndreAgosto wrote: > No, no, sorry, you are right, SQLite database. > I installed firefox plugin now, thanks, but i can't find my android's > databases.. where they are? can you help me? thanks On the device, you should be able to find them at: /data/data/your.app.package/databases/your-db-name.

[android-beginners] Re: Eclipse ADT plugin Install Notice

2008-09-23 Thread hongqing huang
First ,you should install the JDK 1.6 ,then download the zip file from www.eclipse.org,choose the right version for your OS,then unzip the zipfile ,there is a "Eclipse" directory ,open it, execute the "eclipse.exe". 2008/9/22 Joseph katende <[EMAIL PROTECTED]> > I'm using Vista and I've already i

[android-beginners] Re: both sdks

2008-09-23 Thread Sudha
Yes..sure On Sep 23, 2:05 am, Greg Molnar <[EMAIL PROTECTED]> wrote: > I have the previous version of the sdk installed.  I would like to keep that > and also install the new version.  I want to be able to still use code > created under the old version.  Is that possible?  Would it work if I >

[android-beginners] Re: database tool

2008-09-23 Thread AndreAgosto
No, no, sorry, you are right, SQLite database. I installed firefox plugin now, thanks, but i can't find my android's databases.. where they are? can you help me? thanks On Sep 22, 8:51 pm, "Mark Murphy" <[EMAIL PROTECTED]> wrote: > > is possible to explore android embedded database? already exist

[android-beginners] Re: database tool

2008-09-23 Thread AndreAgosto
No, no, sorry, you are right, SQLite database. I installed firefox plugin now, thanks, but i can't find my android's databases.. where they are? can you help me? thanks On Sep 22, 8:51 pm, "Mark Murphy" <[EMAIL PROTECTED]> wrote: > > is possible to explore android embedded database? already exist

[android-beginners] grid instead of mapview on emulator

2008-09-23 Thread sudheer
Hello All i am getting only a grid and not map. my ddms log has the following 3 lines and doesn't any one know how to get past this? 09-23 15:10:30.061: WARN/Maps_Persistence(605): Couldn't find file: / data/data/MapAppProj.MapAppPack/files/DATA_Preferences 09-23 15:10:30.141: WARN/Maps_Persiste

[android-beginners] .Net support

2008-09-23 Thread Krish
Is there any support for developing application on .Net platform? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-beginners@googlegroups.com To u

[android-beginners] Re: View after ListView does not show up

2008-09-23 Thread Imran
On Sep 23, 12:14 am, elephantbug <[EMAIL PROTECTED]> wrote: > Hi, > > I have a problem to display the view (e.g. Button after the ListView > which I will bind and populate from a CursorAdapter). > > Here is the part of the XML file: > > > android:id="@+i

[android-beginners] Re: Extremely new, need help to install on Eclipse

2008-09-23 Thread Imran
On Sep 23, 12:52 am, Dev <[EMAIL PROTECTED]> wrote: > I just got done installing java 6, eclipse 3.3 and android sdk .9 on > Ubuntu. I got eclipse with java working but I cannot seem to get > Android working with Eclipse. When I do the basic tutorial (the one > where it just says "Hello, Andro

[android-beginners] Re: First Steps: Learning Java by programming Android applications?

2008-09-23 Thread Imran
On Sep 23, 4:14 am, Ling-Ling <[EMAIL PROTECTED]> wrote: > Hey guys, > > I wanted to learn java and I also want to write applications for the > Android, so I thought I maybe could combine those two things. Would > you recommend this, or should I learn first java? > It would be great if you have

[android-beginners] :Button

2008-09-23 Thread Imran
Hi All when we use a default Button and click on it... it will change its color( in to Orange... may be to show onClick event) but this is not the case when i use button.setBackgroundDrawable(R.drawable.My_button); than button doesn't show any change on

[android-beginners] : Button

2008-09-23 Thread Imran
Hi All when we use a default Button and click on it... it will change its color( in to Orange... may be to show onClick event) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group