[android-beginners] Re: Issues with Hello World

2009-06-10 Thread Sheng-Yi Shih
Hi, What does that mean "create activity box ticked". Would you please explain it more? Thank you for your help.:) 2009/6/9 renegadea...@googlemail.com > > I am pretty sure u need to have the create activity box ticked in > eclipse and the app will run > > On Jun 9, 7:07 am, Sheng-Yi Shih

[android-beginners] Re: SMS

2009-06-10 Thread Sean Hodges
Janardhan, Sorry, I'm not sure what your question was in the follow-up email, is there something specific that you are struggling with that Balwinder did not provide in his links? There are various ways to achieve the kind of synchronous messaging you want: standard TCP sockets, Web services, Jab

[android-beginners] Re: 500kb OPML parsing issues

2009-06-10 Thread Dave Bordoley
Use a SAX parser to parse the XML, see http://developer.android.com/reference/javax/xml/parsers/SAXParser.html. Dave On Tue, Jun 9, 2009 at 7:36 PM, renegadea...@googlemail.com wrote: > > Right this is the problem. I am trying to find specific words within > this large OPML file which content i

[android-beginners] Re: 500kb OPML parsing issues

2009-06-10 Thread Marc Lester Tan
or use Pull Parser: http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html -Marc On Wed, Jun 10, 2009 at 3:59 PM, Dave Bordoley wrote: > > Use a SAX parser to parse the XML, see > http://developer.android.com/reference/javax/xml/parsers/SAXParser.html. > > Dave > > > On Tue

[android-beginners] Android Widget

2009-06-10 Thread glory
Hi All, I am trying to create a widget using AppWiget frame work. I was successful in creating the UI but i was not able to update the UI . I am getting following error: 06-10 15:46:29.407: WARN/ActivityManager(582): Unable to start service Intent { comp={com.regard.solotion.widget/ com.regard.sol

[android-beginners] Re: Problem with Hello World

2009-06-10 Thread Maurizio Bellemo
I have the .apk and now that I tried to put again bot the SDK and Eclipse there is no error... I think it compiles well because there is no error I create the default project of Eclipse Android and run it with 1.5 version The emulator opens and shows the intro and desktop, but no applicatio

[android-beginners] intent filter for MMS

2009-06-10 Thread sreehari.vadala
Hi My applications wants to receive an alert whenever a MMS arrives or leaves. I know that for SMS android.provider.Telephony.SMS_RECEIVED is intent filter used? Any idea what is the similar kind of intent filter for MMS for receiveing as well as sending? Thanks --~--~-~--~~

[android-beginners] Re: 2d Game Development

2009-06-10 Thread nikki
http://www.rbgrn.net/content/54-getting-started-android-game-development Just think this article may be helpful :) On Jun 10, 1:08 pm, Jesper Lundgren wrote: > this might be in some interest of > you,http://code.google.com/events/io/sessions/WritingRealTimeGamesAndroid... > > On Wed, Jun 10, 2

[android-beginners] Re: 2d Game Development

2009-06-10 Thread Desu Vinod Kumar
Hi Is there any Box2d Developed games in android? --~--~-~--~~~---~--~~ 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 t

[android-beginners] Re: 500kb OPML parsing issues

2009-06-10 Thread renegadea...@googlemail.com
Can you actually show me some code doing it - I ave tried using these and always fail with some exception... please demo how you would do it! On Jun 10, 9:11 am, Marc Lester Tan wrote: > or use Pull Parser: > > http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html > > -Marc >

[android-beginners] OnKeyListener in a for loop

2009-06-10 Thread MMC2
I am trying to enter 7 entries using an EditText in a for loop. But I get the error message "Cannot refer to a non final variable n inside an inner class defined in a different method. Without the for loop I can enter one entry. How do I set up a loop to do this. EditText enter_count = (E

[android-beginners] Re: Android Widget

2009-06-10 Thread Mark Murphy
glory wrote: > Hi All, > I am trying to create a widget using AppWiget frame work. > I was successful in creating the UI but i was not able to update the > UI . > I am getting following error: > 06-10 15:46:29.407: WARN/ActivityManager(582): Unable to start service > Intent { comp={com.regard.solo

[android-beginners] Re: 500kb OPML parsing issues

2009-06-10 Thread Sean Hodges
Andy, A simple example is provided on the already linked article for PullParser (http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html) An example for using the SAXParser is available here: http://www.anddev.org/parsing_xml_from_the_net_-_using_the_saxparser-t353.html If you

[android-beginners] Re: android' is not recognized as an internal or external command,

2009-06-10 Thread Sean Hodges
Yogesh, >From my recollection, with the 1.1 SDK you don't need to create an AVD, that functionality was introduced later on. You should be able to just type "emulator" and the emulator will launch the built-in AVD. If you actually want more than one AVD, you'll need to upgrade your SDK. Is ther

[android-beginners] Re: Best way to add 100.000 words to database

2009-06-10 Thread kaloer
I think you are right. I'll look at it, Thank you very much //Kaloer On 2 Jun., 13:05, kaloer wrote: > Btw, this is how the app works: > > There is a text view and a button. The user will enter a single word, > and when he presses the button, the application checks whether this is > actually a

[android-beginners] Get unread messages in inbox

2009-06-10 Thread kaloer
Hi, Is it possible to get the unread sms messages? I know that I can get all messages using the content://sms/inbox uri, but how do I check whether it is unread? Thank you, //Kaloer --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

[android-beginners] Re: Android Widget

2009-06-10 Thread glory
Thanks :) It worked. On Jun 10, 5:10 pm, Mark Murphy wrote: > glory wrote: > > Hi All, > > I am trying to create a widget using AppWiget frame work. > > I was successful in creating the UI but i was not able to update the > > UI . > > I am getting following error: > > 06-10 15:46:29.407: WARN/Ac

[android-beginners] Re: OnKeyListener in a for loop

2009-06-10 Thread Odessa Silverberg
That's because you defined n inside a method. change for (int n = 1; n < 7; n++) in for (n = 1; n < 7; n++) and add a private int n = 0; in your Activities Class. It needs to be declared so that it's accessible everywhere in the class, because you create onKey(...) (which is an inline implem

[android-beginners] Re: Best way to add 100.000 words to database

2009-06-10 Thread Gavin Aiken
Hey, In addition to what Mark said you might want to look at using a trie. http://groups.google.com/group/android-developers/browse_thread/thread/e7857f4eaf2856fd/ff84d0a6bf64da83?lnk=gst&q=trie#ff84d0a6bf64da83 A few of the other developers seem to be using this technique. Gav On Wed, Jun 10

[android-beginners] Re: Issues with Hello World

2009-06-10 Thread Mike Garcia
Have any of you tried opening the applications pane to see if the application Hello, Android is listed? If it is, try pressing it with the mouse and see if the app starts. If it isn't there, then with the emulator successfully running and at the home screen, relaunch the application. Once in a w

[android-beginners] Re: android' is not recognized as an internal or external command,

2009-06-10 Thread Soloco
Is your current location (e.g. prompt) set to the "tools" folder. You could also try editing the PATH environment variable. // Editing the PATH Environment Variable // 1. Right-click My Computer and select Properties 2. Select the Advanced Tab > Environment Variables Button 3. In the System v

[android-beginners] Re: fBook on G2

2009-06-10 Thread Mike Garcia
fBook was replaced by Facebook application. I believe they are the same developer and it is indeed the same horrible interface on both applications... Neither is officially supported by Facebook directly either. I'm curious to know if they were angered by that fact and contacted Google to have i

[android-beginners] Re: Issues with Hello World

2009-06-10 Thread Rc3375
I just completed HELLO ANDROID app, I too thought something was amiss, it took many minutes for the screen to appearit just takes along time for it to respond.rcobb3...@gmail.com On Jun 6, 8:03 pm, Fahd wrote: > Hi All, > > I am following the hello world example and when I run it throu

[android-beginners] Re: Timer

2009-06-10 Thread Mike Garcia
I use Runners and Handlers instead of Timer although each has their benefits and drawbacks. On Mon, Jun 8, 2009 at 11:51 PM, ian.fawcett.hun...@googlemail.com < ian.fawcett.hun...@googlemail.com> wrote: > > java.util.Timer see > http://developer.android.com/reference/java/util/Timer.html > > Use

[android-beginners] Any way to save webpages from the Android Browser?

2009-06-10 Thread dujavi
Hi, has somebody found the way to save web pages from the Android Browser? Thanks. --~--~-~--~~~---~--~~ 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@goog

[android-beginners] Atlanta Android Users Group

2009-06-10 Thread BarbieDahl
This post is for any developers in the Atlanta area that are looking for an Android users group to work with. I would like to form a group that can be used to help each other with application ideas, mentoring and android tutorials on a local level for the upcoming Android Developers Challenge II

[android-beginners] Re: Eclipse debug port problem (8700)

2009-06-10 Thread Mike Garcia
How did you install Eclipse? via download from their website or via apt-get? On Tue, Jun 9, 2009 at 6:53 AM, axl.cookb...@gmail.com < axl.cookb...@gmail.com> wrote: > > Hi! > > I try to install Android sdk (latest version) on my Ubuntu Hardy box > with eclipse 3.4. I followed the guide but when

[android-beginners] Re: Beginner Help needed

2009-06-10 Thread Mike Garcia
What operating system (Linux/Windows)? What version of Eclipse? Any console output including a verbose error would also be helpful. On Mon, Jun 8, 2009 at 6:22 PM, Robert Meza wrote: > > I am very new to the Android SDK, I cannot get the emulator to run, I > have looked to the community board

[android-beginners] Blogging Tool

2009-06-10 Thread Desperados
Hi @ALL I want to implement an Android application to add pictures (of the phone´s gallery) to an existing blog. I managed to get hello world on the display, but what have i to do to begin programing? Thx for your help! --~--~-~--~~~---~--~~ You received this mes

[android-beginners] handling touch events in MapView

2009-06-10 Thread Philip Tucker
I have created a MapActivity containing a MapView. Drag and zoom work fine, and I've successfully added an ItemizedOverlay that displays and updates properly. Right now I can add OverlayItems to the map center via a button, but I would like to add functionality allowing the user to issue a long cl

[android-beginners] Re: UDP Connection

2009-06-10 Thread bogogo
Hi Kevin Were you able to solve this? I'm also trying to send a UDP packet via the emulator and cannot receive it on the same local PC. I know there's nothing wrong with my ports as I can receive when sending using other programs, tools etc. I'm using similar code to you, but I don't specify the

[android-beginners] mapping MapView touch events to GeoCoordinates

2009-06-10 Thread Philip Tucker
I'm having trouble with the Google Maps API, specifically handling touch events in MapView and mapping those events to Geo coordinates. Requirement: I've created a MapActivity containing a MapView. Drag and zoom work fine, and I've successfully added an ItemizedOverlay that displays and updates p

[android-beginners] isFirst on cursor is not returning false each time!!!!!!!!!!!!!!!

2009-06-10 Thread sheshi
I am using android SDK1.5 r_1.I am querying the callLog for call history!!! problem here is my code! package com.arka.CallLogDemo; //import java.sql.Date; import java.util.ArrayList; import android.app.AlertDialog; import android.app.ListActivity; import android.content.DialogInter

[android-beginners] No Activity found to handle intent {action="com.example.MY_ACTION"}

2009-06-10 Thread Loïc
Hi, I have created a MapActivity that acquires a target from user selection. This activity declares the following intent filter: A second activity in an other application startActivityForResult : Intent intent = new Intent("com.example.MY_ACTION"); startActiv

[android-beginners] Re: OnKeyListener in a for loop

2009-06-10 Thread xiaolin
when I run the example, it shows the result very very very slow, sometimes I can not wait for it and just close it? do you have such problem? 2009/6/10 Odessa Silverberg > > That's because you defined n inside a method. > > change > for (int n = 1; n < 7; n++) > in > for (n = 1; n < 7; n++) >

[android-beginners] Hello World not displays in simulator

2009-06-10 Thread devycn...@googlemail.com
Hello All, I have added or followed all steps as it is given in the tutorial guide. Strings.xml Hello World, HelloAndroid! Hello, Android main.xml - http://schemas.android.com/apk/res/ android" android:orientation="vertical" android:layout_width="fi

[android-beginners] To Add ScrollWindow in TabHost

2009-06-10 Thread vikneesh
Hi , I am new to android. i Need to know the procedure how to add a ScrollWindow to a TabHost. Also need to know how to adjust the properties like width and height of the scrollwindow. really need this help thanks in advance. --~--~-~--~~~---~--~~ You received

[android-beginners] Re: No Activity found to handle intent {action="com.example.MY_ACTION"}

2009-06-10 Thread Balwinder Kaur (T-Mobile)
Could you please paste what your AndroidManifest.xml files look like ? Balwinder Kaur 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: Problem with Hello World

2009-06-10 Thread Rc3375
I just tried the same application.When I first started it, didn't know what to expect..saw a blank window, then a pict of the G1, I thought I needed to turn on the phone, but nothing happened. I too saw the message about the clock, hit STOP,ABORT, or smoething like that, then ANDROID came on m

[android-beginners] Re: No Activity found to handle intent {action="com.example.MY_ACTION"}

2009-06-10 Thread Mark Murphy
Loïc wrote: > Hi, > > I have created a MapActivity that acquires a target from user > selection. This activity declares the following intent filter: > > > > android:name="android.intent.category.DEFAULT" /> > > > A second activity in an other application startA

[android-beginners] Re: Syntax error on token ...... (newb)

2009-06-10 Thread ian.fawcett.hun...@googlemail.com
You cant have Java variables starting with numbers, must be letters (or underscore). So you're drawable '@drawable/ 2316840057_7d197ddd0f_m' mis-translates. Call it '@drawable/ abc_2316840057_7d197ddd0f_m' and I think you'd be OK (of course the filename in res/drawable has to change too) Ian Hunt

[android-beginners] Re: Click on MapView return Dialog/Alert Long/Latitude

2009-06-10 Thread ian.fawcett.hun...@googlemail.com
Implement you own MapView which overides onTouchEvent(). HTH Ian Hunter On Jun 8, 9:35 pm, Georgy wrote: > Hello, > > this should be simple but somehow I can't get it to work!! > > I have a simple map application, how can I get a dialog when the user > clicks on the map to whenever the user c

[android-beginners] startup too slow

2009-06-10 Thread xiaolin
when I run the example, it shows the result very very very slow, sometimes I can not wait for it and just close it? do you have such problem? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. T

[android-beginners] Re: 2d Game Development

2009-06-10 Thread Yusuf T. Mobile
You will mostly use the Canvas class: http://developer.android.com/reference/android/graphics/Canvas.html For one object to pass over another, you use drawing layers, which Canvas supports. Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in this email are tho

[android-beginners] Re: SMS

2009-06-10 Thread Yusuf T. Mobile
Hi Janardhan, if you want a client and server both on the phone, use an Activity for the former and Service for the latter. Otherwise, if you want to the server to be accessible by any phone, then one way to do this is to use Google's App Engine. Your client application can then communicate with t

[android-beginners] Eclipse layout feature?

2009-06-10 Thread Kent Loobey
If in an Android app I open res->layout->main.xml in Eclipse I get two views, one above "Layout" tab and the other above "main.xml" tab. Is there a description somewhere of how to work with the "Layout" view? --~--~-~--~~~---~--~~ You received this message beca

[android-beginners] Re: Eclipse layout feature?

2009-06-10 Thread Kent Loobey
Oops. I figured it out. It's drag and drop. On Wednesday 10 June 2009 12:23:02 Kent Loobey wrote: > If in an Android app I open res->layout->main.xml in Eclipse I get two > views, one above "Layout" tab and the other above "main.xml" tab. Is there > a description somewhere of how to work with

[android-beginners] Game Development with Multiple Levels

2009-06-10 Thread Justin B. Burris
Hello all! I'm currently working on a game which will consist of multiple different levels. Forgive me if this seems rudimentary! I'll use the original Sonic the Hedgehog as an example. In sonic, you have various screens, each with different level designs for the player to traverse. These levels

[android-beginners] Disabled another application

2009-06-10 Thread Sylvain MOUQUET
Hi, I want to know if it's possible to disabled another application : Activity and Services Sylvain --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to andr

[android-beginners] Get all application which use android.intent.action.BOOT_COMPLETED

2009-06-10 Thread Sylvain MOUQUET
Hi, i want to know if it's possible to get all applications which use android.intent.action.BOOT_COMPLETED Sylvain --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, se

[android-beginners] Re: Issues with Hello World

2009-06-10 Thread maurizio.bellemo
The problem is when I try to relaunch.. it says emulator: ERROR: the user data image is used by another emulator. aborting Any ideas? On Jun 10, 6:24 am, Mike Garcia wrote: > Have any of you tried opening the applications pane to see if the > application Hello, Android is listed? If it is, tr

[android-beginners] Re: Problem with Hello World

2009-06-10 Thread Maurizio Bellemo
I'm sorry, but this does not help... I think the problem is more difficult to solve... I swa a lot of threads on the web... no one seems to know how to solve it 2009/6/10, Rc3375 : > > I just tried the same application.When I first started it, didn't > know what to expect..saw a blank win

[android-beginners] Re: Problem with Hello World

2009-06-10 Thread Kent Yip
hey Maurizio Bellemo, maybe if you post your code here we can help more. On Wed, Jun 10, 2009 at 3:23 PM, Maurizio Bellemo < maurizio.bell...@gmail.com> wrote: > > I'm sorry, but this does not help... I think the problem is more > difficult to solve... I swa a lot of threads on the web... no one

[android-beginners] Re: Atlanta Android Users Group

2009-06-10 Thread grakhul
I am not a developer, but I am interested. Just getting to know android and playing around with it. I live in the clayton county area what about you? On Jun 9, 11:17 pm, BarbieDahl wrote: > This post is for any developers in the Atlanta area that are looking > for an Android users group to wor

[android-beginners] Re: Hello World not displays in simulator

2009-06-10 Thread Mike Garcia
Check the default text of the text view inside the main.xml. In 1.5, this is set there and not in the string xml file. On Tuesday, June 9, 2009, devycn...@googlemail.com wrote: > > Hello All, > I have added or followed all steps as it is given in the tutorial > guide. > Strings.xml > ---

[android-beginners] Re: To Add ScrollWindow in TabHost

2009-06-10 Thread Mike Garcia
The easiest way using latest tools is the xml gui. To edit the properties use the properties tab next to the console output window. On Wednesday, June 10, 2009, vikneesh wrote: > > Hi , > > I am new to android. i Need to know the procedure how to add a > ScrollWindow to a TabHost. > > Also need

[android-beginners] How would I create a button bar like in the New Account activity of the Email app?

2009-06-10 Thread dutch
Like the title states, I would like to have a button bar at the bottom of my activity, similar to the one in the "Create new Account" activity in the email (not gmail) app. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Grou

[android-beginners] Re: No Activity found to handle intent {action="com.example.MY_ACTION"}

2009-06-10 Thread Loïc
Here is the manifest: http://schemas.android.com/apk/res/android"; package="com.mycompany.android.maps" android:versionCode="1" android:versionName="1.0">

[android-beginners] Re: No Activity found to handle intent {action="com.example.MY_ACTION"}

2009-06-10 Thread Loïc
Hi Mark, You are right. "android.intent.category.DEFAULT" is not the default category of the Intent. Definitely a beginner question ... Thanks for your answer. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Androi

[android-beginners] Re: Problem with Hello World

2009-06-10 Thread Maurizio Bellemo
the problem is that i don't do any code... I use the one created by the project with in the Main.xml the string helloworld 2009/6/11, Kent Yip : > hey Maurizio Bellemo, > > maybe if you post your code here we can help more. > > On Wed, Jun 10, 2009 at 3:23 PM, Maurizio Bellemo < > maurizi