[android-beginners] Re: Samsung i7500 skin now available for Android Emulator!

2009-05-07 Thread Gulfam
Hi Tea Vui Huang, Thanks for your post. But please let me know How we can run Samsung i7500 with (android-sdk-windows-1.0_r2) ? Thanks in advance. Gulfam On May 7, 1:03 am, Tea Vui Huang tvhuangs...@gmail.com wrote: Samsung i7500 skin now available for Android

[android-beginners] Re: Linux Kernel with SDK 1.5

2009-05-07 Thread ja...@work
Thanks! :) On 6 Mag, 17:02, Sean Hodges seanhodge...@googlemail.com wrote: The kernel version can be found in the .repo/manifests/default.xml in the corresponding SDK. 1.0 = 2.6.25 1.5 (current) = 2.6.27 Cupcake = 2.6.30-rc4 (pulled from latest kernel/common tree) On May 6, 2009 3:25 PM,

[android-beginners] Re: Create AVD on a Mac

2009-05-07 Thread JArkelen
The ./android dit the trick. Thanks! On May 7, 12:30 am, Josiah josiahlcarl...@gmail.com wrote: Try these commands:http://groups.google.com/group/android-beginners/browse_thread/thread... Turns out that ./android is pretty important.  Why the documentation leaves it out (even if it may be

[android-beginners] Re: Samsung i7500 skin now available for Android Emulator!

2009-05-07 Thread Gulfam
Hi, How i can run it form IDE like eclips? Gulfam On May 7, 2:18 pm, Gulfam gulfa...@gmail.com wrote: Hi Tea Vui Huang, Thanks for your post. But please let me know How we can run Samsung i7500 with (android-sdk-windows-1.0_r2) ? Thanks in advance. Gulfam On May 7, 1:03 am, Tea

[android-beginners] Re: -http-proxy can't work in emulator with 1.5 sdk

2009-05-07 Thread a druid
Same problem for me. Neither the commandline switch -http-proxy nor changing the sql database. The only thing that worked was Settings - Wireless controls - Mobile networks - Access Point as mentioned on yyour suggested solution. I think the emulator should be fixed, especially as the doc

[android-beginners] Emulator - android 1.5

2009-05-07 Thread ja...@work
Hi to everybody Yesterday I got the source code ($ repo init, $repo sync) and I did a $ make. Now I would like to see what I build. how can I launch an emulator? how does it work? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-beginners] Re: -http-proxy can't work in emulator with 1.5 sdk

2009-05-07 Thread David Turner
2009/5/7 a druid klausf...@gmail.com I think the emulator should be fixed, especially as the doc suggests using -htt-proxy. Absolutely, and I'm working on it, I was just clarifying that the incorrect TCP checksums cannot be caused by the emulator. Additionally the dog suggests to use the

[android-beginners] Emulator launch error in HelloAndroid tutorial

2009-05-07 Thread Dennis Christy
I get the following error in attempting to run the HelloAndroid tutorial: Failed to find an AVD compatible with target 'Android 1.5', Launch aborted I have read the documention and the emails in re this problem, and I see the fix is to create an AVD by opening a terminal window and typing android

[android-beginners] Re: Emulator launch error in HelloAndroid tutorial

2009-05-07 Thread Sean Hodges
You want the command prompt in Windows. Try typing cmd into the launch box in the start menu. On Thu, May 7, 2009 at 1:12 PM, Dennis Christy dennischri...@gmail.com wrote: I get the following error in attempting to run the HelloAndroid tutorial: Failed to find an AVD compatible with target

[android-beginners] Re: Emulator launch error in HelloAndroid tutorial

2009-05-07 Thread Marcos Lobo
Hi, To open a terminal in Windows Vista: Click on Start button and type on the text area next command: cmd The cmd open the terminal Cheers. 2009/5/7 Dennis Christy dennischri...@gmail.com I get the following error in attempting to run the HelloAndroid tutorial: Failed to find an AVD

[android-beginners] Re: Emulator launch error in HelloAndroid tutorial

2009-05-07 Thread Dennis Christy
I'm sorry, I did not explain my problem completely. I just want to create the AVD so I can run the tutorial. Opening the terminal window in Vista does not allow me to type in the create avd command, even though I have changed the directory to the tools directory in the sdk. It tells me it cannot

[android-beginners] Re: Emulator launch error in HelloAndroid tutorial

2009-05-07 Thread Sean Hodges
You may need to set your JAVA_HOME environment variable. What is the exact error you're getting? On Thu, May 7, 2009 at 1:40 PM, Dennis Christy dennischri...@gmail.com wrote: I'm sorry, I did not explain my problem completely. I just want to create the AVD so I can run the tutorial. Opening

[android-beginners] Get alarms from Alarm Clock application

2009-05-07 Thread kaloer
Hi, Is it possible to access the alarms from the Alarm Clock application, so i can use them in my application? And can I create an alarm in my application, which is visible in the Alarm Clock app? --~--~-~--~~~---~--~~ You received this message because you are

[android-beginners] Re: Emulator launch error in HelloAndroid tutorial

2009-05-07 Thread Dennis Christy
When I type the following into the cmd prompt: c:\...android-sdk-windows-1.5_r1\toolsandroid It gives me the following message: 'java' is not recognized as an internal or external command, operable program or batch file On Thu, May 7, 2009 at 5:49 AM, Sean Hodges

[android-beginners] Re: How to I use touch screen to draw a straight line

2009-05-07 Thread BGH
Something I've wanted to know is if he does as you say and makes the custom view static or it's own java file, how does he access the x and y variables to know where to draw the line? On Apr 15, 4:39 pm, Raphael r...@android.com wrote: Note that if you want you can use your custom view directly

[android-beginners] Re: WebView Issue

2009-05-07 Thread glory
Thanks a lot :) On May 6, 4:03 pm, Mark Murphy mmur...@commonsware.com wrote: glory wrote: hi, loadDataWithBaseURL() method was woking well in the previous version i.e 1.1 but when I migrated to 1.5, in webview it showed only blank screen. Download the source code to my introductory

[android-beginners] Problem to show a button below a scrollview

2009-05-07 Thread Chavepeyer Geoffrey
Hi guys and first of all thanks for reading me :) What I want to do is to display a button that is always visible on the bottom of my view. The problem is that my scrollview is going all through the end of the screen. Therefore my button is hiding the last items of my scroll view. Here is my

[android-beginners] Re: Problem to show a button below a scrollview

2009-05-07 Thread Junior Einsfeld
Hi Chavepeyer, Try change the android:layout_height=fill_parent of your first RelativeLayout to an value in pixels. Example: android:layout_height= 250px Att, Junior On Thu, May 7, 2009 at 12:09 PM, Chavepeyer Geoffrey gchavepe...@gmail.comwrote: Hi guys and first of all thanks for reading me

[android-beginners] Itens Checked in a ListView

2009-05-07 Thread Junior Einsfeld
Hi people! What the best form to get the itens checked in a ListView? Tanks a lot! Junior Einsfeld --~--~-~--~~~---~--~~ 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] Testing on Devices and Networks

2009-05-07 Thread jtaylor
In Preparing to Publish in the Dev Guide, it speaks of testing on the device and the network you want your application to work on. Don't I want my application most probably to work on every device and network? And aren't many devices coming out with Android on many different networks both soon

[android-beginners] Re: Get alarms from Alarm Clock application

2009-05-07 Thread Jack Ha (T-Mobile USA)
As far as I know, you are able to do that since the Alarm Clock app doesn't expose those specific intents. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do

[android-beginners] Re: Eclipse Ganymede Sockets issue

2009-05-07 Thread mic.ger...@gmail.com
Hi, try : http://dl-ssl.google.com/android/eclipse/ On 6 mai, 19:59, dOlOb detresc...@gmail.com wrote: No repository found athttps://dl-ssl.google.com/android/eclipse/   Error reading update sitehttps://dl-ssl.google.com/android/eclipse/.   Unconnected sockets not implemented Not able to

[android-beginners] Re: How to record audio in wav format?

2009-05-07 Thread l hx
and how to record audio using channels 2? who could help me? On Wed, Apr 15, 2009 at 5:50 AM, Dave Sparks davidspa...@android.comwrote: There is no way to record in WAVE format with current version of Android. With the Cupcake SDK, you can record and write your own WAVE file. On Apr 14,

[android-beginners] Insmod Modules in Emulator

2009-05-07 Thread Deepali
Hi I have emulator kernel built, and I have my code cross compliled with emulator kernel. I have also enabled the Enable loadable modules setting for this. I want to know , whats the next step. ? Where to I place the .ko file and how to test this? Hope I am clear in my question :-) Thank u in

[android-beginners] How to start Android emulator 1.5?

2009-05-07 Thread Straja
Hi, I'm absolute begginer. I did the all things that the tutorial said. And when I start the eumulator in the command prompt i've got an error that I didn't provide name of AVD. I know that the command is emulator -avd name, and what that name should be? Thanks :)

[android-beginners] Android rss reader

2009-05-07 Thread couetteo
Hello, I am currently developing an RSS reader but can't seem to read any google news rss. I was wondering if their servers blocked any android app trying to read the feed. (Yahoo rss work fine) Does anyone know anything about this ? Thanks --~--~-~--~~~---~--~~

[android-beginners] Camera in emulator

2009-05-07 Thread DANIEL AEGERTER
Hi together I’m developing an application that reads QR-codes. I would like to use the zxing-framework 1.3. However, I’m not able to capture the input from my USB-camera in the emulator. What do I have to do in order that my camera works? At the moment I'm using android-sdk 1.1, should I use the

[android-beginners] Libraries for ARM6 board?

2009-05-07 Thread jimt
Hi, I'm trying to build V8 for an ARM6 board. V8 has build support for Android, but when I use the Android toolchain to build the v8 library, I get a file is not of required architecture. The V8 folks suggested I ask this question here. The V8 folks also suggested that I try to build a simple

[android-beginners] database application with j2me

2009-05-07 Thread Jayesh
hi, i m familier with java, but newer in j2me, now i want to know is it possible develope small database application in Sigmatel mobile with j2me, what kind of sdk of software need for that, plz give me guideline for that, Thanks --~--~-~--~~~---~--~~ You

[android-beginners] Trouble with starting The Android emulator 1.5.

2009-05-07 Thread Straja
Hi, I'm absolute begginer. I've done all the things that the tutorial said for Windows users. When I tried to start the emulator in cmd, I've got an error message to provide AVD name with emulator -avd name. What that name should be? --~--~-~--~~~---~--~~ You

[android-beginners] Re: Eclipse Ganymede Sockets issue

2009-05-07 Thread mic.ger...@gmail.com
Hi, try : http://dl-ssl.google.com/android/eclipse/ On 6 mai, 19:59, dOlOb detresc...@gmail.com wrote: No repository found athttps://dl-ssl.google.com/android/eclipse/   Error reading update sitehttps://dl-ssl.google.com/android/eclipse/.   Unconnected sockets not implemented Not able to

[android-beginners] AVD

2009-05-07 Thread alexandre
you have this command for AVD android create avd --name nome_do_avd --target 1 Directory Android SDK 1.5 tools Terminal for linux or MacOsx Ex: ./android create avd --name avd11 --target 1 for Android SDK 1.1 ./android create avd --name avd15 --target 2 for Android SDK 1.5 Cmd for

[android-beginners] How to run emulator?

2009-05-07 Thread Straja
Hi, I'm absolute begginer. I put /tools in Enviroment variables and the emulator doesnt work. When I said emulator in cmd it gives me an error that I must provide an Android Virtual Device with emulator -avd name. Is that mean that I mast built the application first and then run with

[android-beginners] Problem with SQLite database, accessing the table

2009-05-07 Thread mic.ger...@gmail.com
Hi all, I am developing an application that need a database (store username and password) and when I try to access to it I obtain those errors in the logCat : 05-07 09:02:17.194: ERROR/AndroidRuntime(520): Uncaught handler: thread main exiting due to uncaught exception 05-07 09:02:17.213:

[android-beginners] Re: Problem with SQLite database, accessing the table

2009-05-07 Thread Glen Humphrey
It looks to me like your program tries to fetch from the options table before it has been created. On May 7, 2:28 am, mic.ger...@gmail.com mic.ger...@gmail.com wrote: Hi all, I am developing an application that need a database (store username and password) and when I try to access to it I

[android-beginners] Re: Get alarms from Alarm Clock application

2009-05-07 Thread kaloer
Okay thank you, I'll look at it .. On 7 Maj, 18:45, Jack Ha (T-Mobile USA) jack...@t-mobile.com wrote: As far as I know, you are able to do that since the Alarm Clock app doesn't expose those specific intents. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The

[android-beginners] Re: Get alarms from Alarm Clock application

2009-05-07 Thread Jack Ha (T-Mobile USA)
Sorry for my typo. What I meant to say was that you are NOT able to that. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those

[android-beginners] Re: Get alarms from Alarm Clock application

2009-05-07 Thread Jack Ha (T-Mobile USA)
Sorry for my earlier typo. What I meant was that you are NOT able to do that. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent

[android-beginners] Re: Please Help! I Can't get the ADT Plugin to Install

2009-05-07 Thread Raphael
Are you using Eclipse Classic? It doesn't have all the libraries needed. Please use Eclipse for Java Developers or Eclipse RCP from http://eclipse.org. R/ On Tue, May 5, 2009 at 6:34 PM, J justinssh...@gmail.com wrote: I get this error no matter which of the 3 methods I try. What should I

[android-beginners] Update: new ADT Eclipse plugin 0.9.1 available

2009-05-07 Thread Raphael
Hi all, We just updated the ADT Eclipse plugin to 0.9.1. The new plugin provides the following changes: - Added an AVD creation wizard to ADT. It is automatically displayed during a launch if no compatible AVDs are found. - Fixed issue with libs/ folder where files with no extension would

[android-beginners] Re: Trouble with starting The Android emulator 1.5.

2009-05-07 Thread Xavier Ducrohet
Please read the documentation at http://developer.android.com/guide/developing/tools/avd.html Xav On Thu, May 7, 2009 at 4:51 AM, Straja strahinja.s.bano...@gmail.com wrote: Hi, I'm absolute begginer. I've done all the  things that the tutorial said for Windows users. When I tried to start

[android-beginners] Re: Emulator launch error in HelloAndroid tutorial

2009-05-07 Thread Jack Ha (T-Mobile USA)
Have you installed JDK on your machine? If not, you can download it from here: http://java.sun.com/javase/downloads/index.jsp -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their

[android-beginners] How Linux-ey is Android?

2009-05-07 Thread portsample
How many of the freedoms that we've gotten used to using other Linux frontends (desktops), such as xfce, Gnome, KDE are available with the Android frontend? Is it possible to run ANY simple linux apps from a terminal window in an Android device?

[android-beginners] Re: How Linux-ey is Android?

2009-05-07 Thread Mark Murphy
How many of the freedoms that we've gotten used to using other Linux frontends (desktops), such as xfce, Gnome, KDE are available with the Android frontend? As many as there are for TiVo, Linksys routers, or other appliances based on Linux. In other words, none that are officially supported,

[android-beginners] Re: Itens Checked in a ListView

2009-05-07 Thread Junior Einsfeld
Somebody can help me? On Thu, May 7, 2009 at 1:09 PM, Junior Einsfeld junior.einsf...@gmail.comwrote: Hi people! What the best form to get the itens checked in a ListView? Tanks a lot! Junior Einsfeld --~--~-~--~~~---~--~~ You received this message

[android-beginners] Re: Itens Checked in a ListView

2009-05-07 Thread Mark Murphy
http://developer.android.com/guide/samples/ApiDemos/src/com/example/android/apis/view/List11.html Somebody can help me? On Thu, May 7, 2009 at 1:09 PM, Junior Einsfeld junior.einsf...@gmail.comwrote: Hi people! What the best form to get the itens checked in a ListView? Tanks a lot! If

[android-beginners] Re: Itens Checked in a ListView

2009-05-07 Thread Mark Murphy
What I need is to know how can I get the items marked on my list? http://developer.android.com/reference/android/widget/ListView.html#getCheckedItemPositions() -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 2.0 Available!

[android-beginners] Re: Itens Checked in a ListView

2009-05-07 Thread Junior Einsfeld
Hi Mark, What I need is to know how can I get the items marked on my list? Tanks a lot! On Thu, May 7, 2009 at 6:45 PM, Mark Murphy mmur...@commonsware.com wrote: http://developer.android.com/guide/samples/ApiDemos/src/com/example/android/apis/view/List11.html Somebody can help me? On

[android-beginners] Re: How Linux-ey is Android?

2009-05-07 Thread Disconnect
Although the first part of the answer is perfect :) On Thu, May 7, 2009 at 5:16 PM, Mark Murphy mmur...@commonsware.com wrote: How many of the freedoms that we've gotten used to using other Linux frontends (desktops), such as xfce, Gnome, KDE are available with the Android frontend?

[android-beginners] Re: Android 1.5 SDK now available

2009-05-07 Thread dove
I am not have multiple displays, I only runs the Ubuntu on my vmware. and on the same machind, the eclipse works windows is good. On 5月7日, 上午7时23分, David Turner di...@android.com wrote: From the error: org.eclipse.swt.SWTError: Not implemented [multiple displays] It looks like you have

[android-beginners] Re: Android 1.5 SDK now available

2009-05-07 Thread dove
the new ADT 0.9.1 is updated, Hi all, We just updated the ADT Eclipse plugin to 0.9.1. it have fixed the issue. please update the ADT. The new plugin provides the following changes: - Added an AVD creation wizard to ADT. It is automatically displayed during a launch if no compatible AVDs are

[android-beginners] Re: Android 1.5 SDK now available

2009-05-07 Thread Xavier Ducrohet
We just released a fix for this problem. Please install ADT 0.9.1 Xav 2009/5/7 dove dove...@gmail.com: I am not have multiple displays, I only runs the Ubuntu on my vmware. and on the same machind, the eclipse works windows is good. On 5月7日, 上午7时23分, David Turner di...@android.com wrote:

[android-beginners] Re: Eclipse Ganymede Sockets issue

2009-05-07 Thread dOlOb
It worked. I thought I tried this earlier. Thank you very much. On May 7, 7:15 am, mic.ger...@gmail.com mic.ger...@gmail.com wrote: Hi, try :http://dl-ssl.google.com/android/eclipse/ On 6 mai, 19:59, dOlOb detresc...@gmail.com wrote: No repository found

[android-beginners] Re: How to create and open an SQLite database? (Based on NotePad tutorial)

2009-05-07 Thread AJ
Here's the full onCreate() function. Seems like standard SQL syntax to me? ** public void onCreate(SQLiteDatabase db) { db.execSQL(CREATE TABLE IF NOT EXISTS + DATABASE_TABLE_USER + (userID INT PRIMARY KEY,