Re: [android-beginners] I want to get the status of running apps,how to do?

2010-01-28 Thread bf wang
Thanks [?] On Thu, Jan 28, 2010 at 2:36 PM, Justin Anderson janderson@gmail.comwrote: A simple search for running app brings up this post (which is one of the two I was referring to in my first reply and has my answer):

[android-beginners] Re: Unable to configure emulator network

2010-01-28 Thread Pebble
Here's the log: emulator -http-proxy http://##.###.#.##: -debug-proxy -avd GoogleAPIs-Level3 proxy_http_setup: creating http proxy service connecting to: ##.###.#.##: server name '##.###.#.##' resolved to ##.###.#.##: proxy_http_setup: creating HTTP Proxy Service Footer is (len=2): '

Re: [android-beginners] No market on HTC hero

2010-01-28 Thread Viral Brahmbhatt
Hello, you will find the up arrow on bottom left corner of the home screen of your HTC Hero. tap on that arrow to open All Programs, and you can find Market application over there. On Thu, Jan 28, 2010 at 12:35 PM, Batuka batukali...@gmail.com wrote: Hi all i cant see Market on my HTC HERO

[android-beginners] Re: No market on HTC hero

2010-01-28 Thread Batuka
Thaks but it wasnt i think market is missing and i wont to install market but how how to install android market on my HTC HERO On Jan 28, 3:05 pm, Batuka batukali...@gmail.com wrote: Hi all i cant see Market on my HTC HERO where is the Market help me pls -- You received this message because

[android-beginners] Re: save text from edittext to file

2010-01-28 Thread André
That worked fine! Thank you! Now my only problem is that my HTC Tattoo doesn't want to install the apk when I want to test it! =( André On Jan 28, 11:19 am, Sean Hodges seanhodge...@googlemail.com wrote: Sorry, I really wasn't on the ball yesterday :) What you want is: String TESTSTRING =

Re: [android-beginners] Re: No market on HTC hero

2010-01-28 Thread Sean Hodges
You can't install it, it comes pre-installed on the phone. If you can't see it on your home screen, then check your applications menu. If it's not there either, then you may be encountering the same problem as the people reporting here:

Re: [android-beginners] Re: save text from edittext to file

2010-01-28 Thread Sean Hodges
Make sure you sign your APK before trying to use it on your phone. http://developer.android.com/intl/fr/guide/publishing/app-signing.html On Thu, Jan 28, 2010 at 11:48 AM, André pha...@hotmail.com wrote: That worked fine! Thank you! Now my only problem is that my HTC Tattoo doesn't want to

[android-beginners] ViewGroup Problem

2010-01-28 Thread satish bhoyar
Hi all, I am trying to extend the ViewGroup in my application. then from my main activity i will create a variable of type following is the code snippet public class NewViewGrp extends Activity { Vg V = new Vg(this);/* Vg is extending the ViewGroup */ TextView Tv; /** Called

[android-beginners] let user pick a location on a map..

2010-01-28 Thread Michael Dorin
Ok, wondering what thoughts people have for this idea. I would like to be able to let a user pick a location on a map. I would just as soon send a broadcast intent out and have somebody else's activity show the map and let the user pick it..and then somehow let my app know... Not sure how

[android-beginners] لأول مره بالمنتدي ات مجموعة برامج محموله لاغنى عنه ا لكل جهاز Selection of portable software

2010-01-28 Thread alagmy
لأول مره بالمنتديات مجموعة برامج محموله لاغنى عنها لكل جهاز Selection of portable software اليابان تصدر متصفح انترنت خارق في السرعة و الاداء و منافس http://agd3as7ab.eb2a.com/vb/showthread.php?t=1064 اتصال مجانى لجميع الدول العالم http://agd3as7ab.eb2a.com/vb/showthread.php?t=1286 تعبت من بطئ

Re: [android-beginners] Re: How can I add a transparent scalable marker on Google map?

2010-01-28 Thread TreKing
On Thu, Jan 28, 2010 at 1:20 AM, mapper sai.vaiku...@gmail.com wrote: It works fine when I use with Toast but not for Custom Dialog. When I tried to display custom dialogbox it gives me RunTime error (Force Close). How can I show my customDialog on the click of the marker? That's not much

Re: [android-beginners] let user pick a location on a map..

2010-01-28 Thread TreKing
On Thu, Jan 28, 2010 at 8:20 AM, Michael Dorin bsddo...@gmail.com wrote: I would just as soon send a broadcast intent out and have somebody else's activity show the map and let the user pick it..and then somehow let my app know... Not sure how practical that is. It's not Any thoughts or

[android-beginners] Fwd: Vamos todos embarcar nessa! Assunto: GASOLINA

2010-01-28 Thread Allan Rogge
【アランろ気】 -- Mensagem encaminhada -- De: Felipe Ribeiro green.fel...@gmail.com Data: 28 de janeiro de 2010 16:20 Assunto: Vamos todos embarcar nessa! Assunto: GASOLINA Para: douglas_mare...@hotmail.com, pc.alla...@gmail.com, davidrichard.sang...@gmail.com, marilda

Re: [android-beginners] Re: How can I add a transparent scalable marker on Google map?

2010-01-28 Thread Kevin Duffey
I think he wants to display a sort of small bubble thing above the marker, not a large dialog with it's own activity. Google maps does this.. you search for Starbucks, it shows 10 red dots, you click on one and it pops up a little bubble over the dot you clicked show minimal info. If you click

Re: [android-beginners] ViewGroup Problem

2010-01-28 Thread Justin Anderson
Probably because you have a null pointer... Logcat should be able to give you the name of the file and the line number where the problem occurs, but I would be willing to bet it is with this line: Vg V = new Vg(this);/* Vg is extending the ViewGroup */ I'm surprised that the application

[android-beginners] Eclipse can't seem to locate R.java

2010-01-28 Thread André
Hello, I'm not sure if it's me or eclipse that has a problem. Probably me with eclipse! With three different projects where I have copy and pasted the code from the sample apps as an example I almost always get a problem to locate setContentView(R.layout.main); for instance and it says that it

Re: [android-beginners] Eclipse can't seem to locate R.java

2010-01-28 Thread Kevin Duffey
Pick up Mark Murphy's online books for $40 and read them. They'll definitely help you out. Well worth the price. On Thu, Jan 28, 2010 at 1:47 PM, André pha...@hotmail.com wrote: Hello, I'm not sure if it's me or eclipse that has a problem. Probably me with eclipse! With three different

Re: [android-beginners] Eclipse can't seem to locate R.java

2010-01-28 Thread Justin Anderson
You need to create this file: res/layout.main.xml -- There are only 10 types of people in the world... Those who know binary and those who don't. -- On Thu,

Re: [android-beginners] Eclipse can't seem to locate R.java

2010-01-28 Thread Temitope Akinwande
Look at your import statements at the top. Is there one that imports android.R? If so, just delete that import statement. Had this happen to me a few times when I just started with android. On Thu, Jan 28, 2010 at 2:59 PM, Justin Anderson janderson@gmail.com wrote: You need to create this

Re: [android-beginners] Eclipse can't seem to locate R.java

2010-01-28 Thread Wayne Wenthin
I second that! It just happened to me a few days ago. On Thu, Jan 28, 2010 at 2:40 PM, Temitope Akinwande takinwa...@gmail.comwrote: Look at your import statements at the top. Is there one that imports android.R? If so, just delete that import statement. Had this happen to me a few times

Re: [android-beginners] how to open the new screen

2010-01-28 Thread Wayne Wenthin
You'll want something like this in your onCreate requestWindowFeature(Window.FEATURE_NO_TITLE); //Turn off the title bar getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); //Make it full screen On Thu, Jan 28, 2010 at 5:55 AM,

Re: [android-beginners] Eclipse can't seem to locate R.java

2010-01-28 Thread Greg Donald
On Thu, Jan 28, 2010 at 4:40 PM, Temitope Akinwande takinwa...@gmail.com wrote: Look at your import statements at the top. Is there one that imports android.R? If so, just delete that import statement. Had this happen to me a few times when I just started with android. Yup. It also happens

Re: [android-beginners] Eclipse can't seem to locate R.java

2010-01-28 Thread Kevin Duffey
Good info to know. I've always used the Eclipse plugin to generate the Android project, then copy/paste as needed for xml resource files. I was about to reply that R.java should be generated for you by the ADT plugin. In the case you are not using the plugin, such as another IDE or what not, how

Re: [android-beginners] Forward locking or copy protection outside the Marketplace

2010-01-28 Thread Justin Anderson
Take a look at andappstore.com... I know they provide some things for developers to do this kind of thing. At the very least they give devs some tips to implement it in their own apps... On Jan 13, 2010 10:30 AM, KB123 k...@kirkboweassociates.com wrote: Hi, here's a scenario I've been asked to

Re: [android-beginners] How to open new view (call an activity) from options menu defined in XML

2010-01-28 Thread Justin Anderson
Have you looked at the logcat info to get information about the crash? You can usually get filename and line number of where the problem is... On Jan 13, 2010 10:10 AM, portablejim dcseee-goo...@yahoo.com.au wrote: I am trying to open another view from the options menu of my program. My

[android-beginners] How to handle fling motion for multiple views on homescreen

2010-01-28 Thread andynew
Say I have a GLSurfaceView running on Homescreen Such a GLSurfaceView has a cube capable of rotating When I use my finger for left or right scroll on homescreen, I see homescreen moving to left or right Homescreen But I do not see , cube in GLSurfaceView rotating (which is what I want) So,my

[android-beginners] using google maps on AVDs with a newer SDK version than 3?

2010-01-28 Thread arc
Hi all. Am new to Android, and am learning more and more every day. Is there a system image for the AVD that is newer than 3 that also includes the Google APIs. I want to develop for 5, but also use maps. Thanks -- You received this message because you are subscribed to the Google Groups

[android-beginners] Debugging Android With Eclipse

2010-01-28 Thread shlomib
I am unable to get an Android application under Eclipse Galileo to stop at a breakpoint I set in the code. When debugging the code, it continues to run as if the breakpoint doesn't exist. The emulator starts correctly and the code runs correctly under the emulator. However, I must be missing

[android-beginners] Re: save text from edittext to file

2010-01-28 Thread Orhan Yediyıldız
Hi, The variable bodyText in your code isn't a String. It is an object of EditText class. You should get the text of an EditText view by: String str = bodyText.getText(); That should help. On Jan 27, 7:14 pm, André pha...@hotmail.com wrote: I tried that now but get the same problem. here

[android-beginners] Adding an ArrayList of LinearLayout objects to the UI

2010-01-28 Thread Willy Farrell
I am trying to use the following code to go through an ArrayList of LinearLayout objects, add each one to a TableLayout, and finally add that TableLayout to a ScrollView defined in the main.xml file. ScrollView theScrollView = (ScrollView) findViewById (R.id.scroll_view);

[android-beginners] Re: Example sync adapter?

2010-01-28 Thread jono
Yes i too am trying to find out information on how to create sync adapter but there seems to be no specific API for it on the android docs. Contacts contract seems to mention it a lot without providing a link to more information about a sync adapter. Strange On Nov 29 2009, 8:38 pm, seb

[android-beginners] Re: SDK Setup.exe not working

2010-01-28 Thread Lambda Developer
i am having the same problem... could someone please help? SDK Setup.exe just flashes a rectangle and then disappears... desperately awaiting help, lambda -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your

[android-beginners] I would like to make list from string file

2010-01-28 Thread kosac
this is my /res/value/string file string-array name=optionkey itemLjudski igrač/item itemKompjuterski igrač/item itemNeaktivan igrač/item /string-array string-array name=optionvalues itemHUMAN/item itemAI/item itemNONE/item /string-array this is my

[android-beginners] Re: Example sync adapter?

2010-01-28 Thread jono
On Nov 29 2009, 8:38 pm, seb adv@hpfsc.de wrote: Hi, the SDK 2.0 highlights that one can now provide ownsyncadapters for services not directly covered by Android. But so far I was not able to find out how to do this. Has anyone a little example or at least a point to the classes to be

[android-beginners] Rounded Corners for Color Drawables

2010-01-28 Thread saikat
Hi, This page http://developer.android.com/guide/topics/resources/available-resources.html#colordrawableresources says that we can optionally set rounded corners for color rectangles. Could anyone please tell me how to add the rounded corner specification in the following code? (I have searched

[android-beginners] Setting activity in tab content

2010-01-28 Thread Tin
Hi, I m having problem with the TabHost. I want to set activity com.android.phone.action.TOUCH_DIALER inside my tab. I can successfully set my activity that i crated. Intent listintent = new Intent(com.hellotab.action.LIST_CONTACTS); listintent.setClass(this, list.class);

[android-beginners] where to start with android

2010-01-28 Thread jigish
Hi guys I am new to android development, and also I m damn new to java technologies I am php web developer Just wanted to know from all u big brains, from where do I need to start.. Adv java? Or j2me I have no idea how this stuff works Looking forward to ur replies Thanks

[android-beginners] Re: Cannot execute SDK Setup.exe

2010-01-28 Thread Lambda Developer
hello, inspite of updating to the latest java sdk, i am not being able to run setup.exe! thanking every helper in advance, lambda -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question on Stack Overflow at

Re: [android-beginners] Book for learning Android

2010-01-28 Thread Manuj Gupta
Hi, I have been reading *Professional Android Application Development by Reto Meier* It is a pretty good book. Thanks, Manuj On Wed, Jan 27, 2010 at 5:30 PM, Mark Murphy mmur...@commonsware.comwrote: Or this link: http://www.ebookee.com/Google-Android-Ebooks-Pack_387146.html Please be

[android-beginners] Re: Debug.startMethodTracing(); leaves empty file

2010-01-28 Thread కే . కే
Debug.startMethodTracing(x); The Debug.StartMethodTracing() will write to the sdcard, which requires the following permission in the AndroidManifest.xml: uses-permission android:name=android.permission.WRITE_EXTERNAL_STORAGE / On Dec 1 2009, 7:49 am, kaloer mkal...@gmail.com wrote: Hi! A

[android-beginners] Re: [newbie] reminder application

2010-01-28 Thread orang zelek
Hi any body can help me. please.. :( On Thu, Jan 28, 2010 at 12:18 AM, orang zelek orangze...@gmail.com wrote: Hi all. I am a newbie in android. I want to make a reminder application. which will always be reminded every day, in some time. What should I do? Is there someone who has a

[android-beginners] Android streaming media player - information needed

2010-01-28 Thread vl_
Hello, I need to evaluate if Android device can be used to playback live media from our streaming server. - is there an existing streaming media player known to handle well live RTP/ H.264/ aac video stream? - where can i download it from? - How can I install and run it on emulator? i've been

[android-beginners] How to with android-sdk_r3-linux.tgz

2010-01-28 Thread mario jaramillo
Greetings Mrs: I begin to programming Android with android-sdk_m5-rc4_linux-x86, eclipse Galileo and Ubuntu 8.10. With this environment I have programmed short applications , examples of books and proved the samples integrated into the above sdk version:ApiDemos,Snake,..; and all work fine.

Re: [android-beginners] No market on HTC hero

2010-01-28 Thread theglasgowgeeks
Go to settings. The market icon is in there. On Jan 28, 2010 7:05 AM, Batuka batukali...@gmail.com wrote: Hi all i cant see Market on my HTC HERO where is the Market help me pls -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try

[android-beginners] My new Nexus One: FedEx delayed - Oklahoma ice storm

2010-01-28 Thread ajb
How do, Well, I was excited all day today because today was the day I was supposed to get my Nexus-One BUT...an ice storm is here now in Oklahoma. Man, I drove all over the place today in it, the trees and electric lines are covered but the roads were definitely passable. Come to find out,

[android-beginners] Help with Random number generator

2010-01-28 Thread Tag
I'm very new to android and java, so I don't have a very good understanding of how to work through certain problems other than taking wild stabs here and there. The problem i'm trying to overcome is generating a simple random number between 1 and 9 from the click of a button and getting that

[android-beginners] Re: ViewGroup Problem

2010-01-28 Thread k_day
Did you step through the debugger with this to see where it is breaking? On Jan 28, 7:58 am, satish bhoyar getsatonl...@gmail.com wrote: Hi all, I am trying to extend the ViewGroup in my application. then from my main activity i will create a variable of type following is the code snippet

[android-beginners] How can I set max-height on GridView?

2010-01-28 Thread CoRex
Hi all. I am new to android-development so please be patient with me. :) I am trying to understand the views and the layout-files. I have written some code and now it is about experience and understanding (i think). I am trying to set up a GridView and to make a special adapter for it. In

[android-beginners] how to get RSSI (to get bluetooth signal strength)?

2010-01-28 Thread Zhenan Hong
Hi, I am working on Android platform 2.1 and trying to make an app that can get the Bluetooth signal strength from remote devices. It seems i should try to read the 'RSSI' something like : int rssi = intent.getIntExtra (BluetoothDevice.EXTRA_RSSI, Integer.MIN_VALUE); But it just keep

Re: [android-beginners] Re: [newbie] reminder application

2010-01-28 Thread Marcos Oliva
Orang what kind of remainder application are you looking to make ? On Wed, Jan 27, 2010 at 8:46 PM, orang zelek orangze...@gmail.com wrote: Hi any body can help me. please.. :( On Thu, Jan 28, 2010 at 12:18 AM, orang zelek orangze...@gmail.comwrote: Hi all. I am a newbie in android.

[android-beginners] Re: Help with Random number generator

2010-01-28 Thread Lance Nanek
Looks like you are calling setText(int resid) whereas what you really want is setText(CharSequence text): http://developer.android.com/reference/android/widget/TextView.html#setText(int) http://developer.android.com/reference/android/widget/TextView.html#setText(java.lang.CharSequence) Convert

Re: [android-beginners] using google maps on AVDs with a newer SDK version than 3?

2010-01-28 Thread TreKing
Just select a target that has the Google API Add-Ons. On Wed, Jan 27, 2010 at 8:04 AM, arc arclife...@googlemail.com wrote: Hi all. Am new to Android, and am learning more and more every day. Is there a system image for the AVD that is newer than 3 that also includes the Google APIs. I

[android-beginners] Re: How can I add a transparent scalable marker on Google map?

2010-01-28 Thread mapper
Its really nice to have such a developer who responds very fast. Thanks to both of you. Yes Kevin is right. I want the bubble/dialog which can show the information about that marker and two images to go another Activity. I dont know about Starbucks. Let me see about that. To TreKing : Here i am

[android-beginners] Re: Debugging Android With Eclipse

2010-01-28 Thread bharat
Set the breakpoints by double clicking on the side pane near code.Go to the debug mode,press debug and then press function key F5.it will execute till your breakpoint. On Jan 27, 7:40 pm, shlomib sben...@gmail.com wrote: I am unable to get an Android application under Eclipse Galileo to stop at

Re: [android-beginners] I would like to make list from string file

2010-01-28 Thread Justin Anderson
Look at the logcat info -- There are only 10 types of people in the world... Those who know binary and those who don't. -- On Wed, Jan 27, 2010 at 7:51 AM,

Re: [android-beginners] Rounded Corners for Color Drawables

2010-01-28 Thread Justin Anderson
I may be wrong, but it looks to me like the rounded corners have to be added via code... PaintDrawable.setCornerRadius(int radius); http://developer.android.com/reference/android/graphics/drawable/PaintDrawable.html#setCornerRadius%28float%29

Re: [android-beginners] My new Nexus One: FedEx delayed - Oklahoma ice storm

2010-01-28 Thread Justin Anderson
I care why? -- There are only 10 types of people in the world... Those who know binary and those who don't. -- On Thu, Jan 28, 2010 at 5:35 PM, ajb

Re: [android-beginners] ViewGroup Problem

2010-01-28 Thread satish bhoyar
Actually I first tried with findViewById() but it failed gave me Null Pointer exception on Vg then I thought because the Vg is not initialized thats why it might be failing so i did that way. I m not sure weather it is ok.. thanks, satish On Fri, Jan 29, 2010 at 3:08 AM, Justin Anderson

Re: [android-beginners] My new Nexus One: FedEx delayed - Oklahoma ice storm

2010-01-28 Thread Caius 'kaio' Chance
(2010年01月29日 10:35), ajb wrote: How do, Well, I was excited all day today because today was the day I was supposed to get my Nexus-One BUT...an ice storm is here now in Oklahoma. Man, I drove all over the place today in it, the trees and electric lines are covered but the roads were

Re: [android-beginners] My new Nexus One: FedEx delayed - Oklahoma ice storm

2010-01-28 Thread Justin Anderson
Yet again... I care why? This is an Android development forum not a FedEx delivery forum. -- There are only 10 types of people in the world... Those who know binary and those who don't.

Re: [android-beginners] My new Nexus One: FedEx delayed - Oklahoma ice storm

2010-01-28 Thread Caius 'kaio' Chance
(2010年01月29日 15:50), Justin Anderson wrote: Yet again... I care why? This is an Android development forum not a FedEx delivery forum. :) -- Caius 'kaio' Chance ☺ かいお Fedora Project Contributor http://fedoraproject.org/wiki/User:kaio kaio at fedoraproject.org, kaio on irc.freenode.net,

[android-beginners] LogCat window seems to stop working

2010-01-28 Thread Kevin Duffey
Hey all, Has anyone noticed that their LogCat window seems to stop working after an app force closes.. or maybe for some other reason? I've been having issues getting debugging to work on my Ubuntu 9.04 64-bit system with this annoying QEMU channel closed problem. That aside, even when things do

[android-beginners] Including jar files

2010-01-28 Thread Chirayu Dalwadi
How to include .jar files in android for a perticular application in which KSOAP is implemented? -- Warm Regards, Chirayu Dalwadi -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question on Stack Overflow