[android-developers] Design Question

2010-06-23 Thread davemeetsworld
I have an app that posts a status and a location to a php script. Currently It is all performed with 2 classes. One is the main screen where you can put the status in and click a submit button, the second is a class that implements the LocationListener and keeps the location up to date and handles

[android-developers] Build Error - Android 2.2

2010-06-23 Thread Mani Droid
Hi All I downloaded the Android 2.2 source code and try to build it. When I executed the make command, I got an error here like this build/core/java.mk:20: *** frameworks/ex/common: Invalid LOCAL_SDK_VERSION '8' Choices are: current 4 5 6 7. Stop. Then I changed the frameworks/ex/common/Androi

[android-developers] Re: How to Draw route on Google map? not to use DrawPath

2010-06-23 Thread SREEHARI
Hi, Do u want to draw route connecting geo cordinates?? If so you can store the geo coordinates and draw. If you want to draw shortest path you can use some algorithm like Djikstras. Regards, SREEHARI -- You received this message because you are subscribed to the Google Groups "Android Deve

[android-developers] Re: Map API KEY

2010-06-23 Thread SREEHARI
Hi ENSI, No need to open debug.keystore. You just do the following $ keytool -list -alias androiddebugkey -keystore .keystore -storepass android -keypass android You will get Certificate Fingerprint . Then you submit that in http://code.google. com/android/maps-api-signup.html , you will ge

Re: [android-developers] Capture home key event

2010-06-23 Thread Romain Guy
You can't do this :) On Wed, Jun 23, 2010 at 9:52 PM, Vishal wrote: > Hi there, > > Is there any way to get the event of home key. I want to kill my > application whenever the home key is pressed. > > Vishal > > -- > You received this message because you are subscribed to the Google > Groups "And

Re: [android-developers] android client, pc server (JAVA) can't open TCP connection

2010-06-23 Thread David Turner
On Mon, Jun 21, 2010 at 1:40 PM, xuxu wrote: > HI all, > I'm trying to open tcp connection between android (emulator) and PC. > I'm trying to create a new socket and then it crash. > the line where it crash: > Socket s = new Socket("10.0.2.2", 27015); // trying to open a socket > Can some one p

[android-developers] Capture home key event

2010-06-23 Thread Vishal
Hi there, Is there any way to get the event of home key. I want to kill my application whenever the home key is pressed. Vishal -- 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@google

[android-developers] Activity not visible when used Theme.Translucent

2010-06-23 Thread mike
hi guys, this is the expected result NotificationManager --> Activity A --> Activity B (theam on top of Activity A) first time when notified it works fine this is how i start the Activity A from Notification Manager Intent sms = new Intent(context, SaveReceivedSMS.class); PendingIntent startIn

Re: [android-developers] G1 Touch screen not working properly

2010-06-23 Thread TreKing
On Thu, Jun 17, 2010 at 12:55 AM, pramod.deore wrote: > Hi, everybody I have G1 Mobile. Today I realized that my mobiles touch > screen not working properly > You're not getting a response because you're not providing any information. What does this mean? > is this hardware problem? > How shou

Re: [android-developers] When will Android 2.2 source code release

2010-06-23 Thread john wang
That's very good. 2010/6/24 Romain Guy > It was released today :) > > On Wed, Jun 23, 2010 at 4:52 PM, Happy C. > wrote: > > > > Does anyone know this news? > > > > Thanks. > > > > -- > > You received this message because you are subscribed to the Google > > Groups "Android Developers" group. >

[android-developers] Re: ExpandableListView with certain top-level elements expandable and others selectable

2010-06-23 Thread patbenatar
Thanks for the thoughts.. What I've started to do is dig through the source code for the Call List (in the Contacts.git repository), which uses a standard ListView with a custom GroupingListAdapter.. Haven't dug too deep yet, I'm first trying to resolve an import issue.. The adapter class is using

[android-developers] Re: application's persistent not work

2010-06-23 Thread James Wang
Thanks, Dianne. We have confirmed what you said. -- 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+unsub

[android-developers] Re: Device Admin Question

2010-06-23 Thread justinh
I guess I forgot you have to manually put your device in debug mode. It's been so long since I've done that I forgot about that part. On Jun 23, 10:49 pm, justinh wrote: > After finding the time to peruse the new 2.2 admin code sample, > something obvious seems to stand out. What's stopping someo

Re: [android-developers] Sleep mode - technical documentation?

2010-06-23 Thread Connick
One thing I've noticed on froyo, and this could be due to my lack of understanding, is that network connections sometimes fail over wifi even with cpu and wifi lock. Wifi reports its connected yet calls fail immediately. The second I wake up the phone, back in business. (if I disable wifi and re-tr

[android-developers] Device Admin Question

2010-06-23 Thread justinh
After finding the time to peruse the new 2.2 admin code sample, something obvious seems to stand out. What's stopping someone from simply uninstalling the admin package? If I stole a phone I think the first thing I'd do is search for the most popular admin suites and adb.exe uninstall com.package.a

Re: [android-developers] Re: Protect the Shared Data between service and thread

2010-06-23 Thread tarek attia
Yes,I mean that,as in my service there's an array to be accessed also by a thread exists in this service ,so how do I protect the array from being a race condition between the service and the thread? On Thu, Jun 24, 2010 at 4:48 AM, Streets Of Boston wrote: > Do you mean synchronization? (synch

[android-developers] Disable Multitouch

2010-06-23 Thread DroidAddict
Hi All, For some reason my application on multiple phones is not able to perform well when multi touch is done on the maps. Is it the problem with the hardware or is it the code ? Any pointers here is appreciated. Also, is there a way by which we can disable multi-touch programatically other tha

[android-developers] Re: Protect the Shared Data between service and thread

2010-06-23 Thread Streets Of Boston
Do you mean synchronization? (synchronized blocks; classes from the java.util.concurrent package) On Jun 23, 8:38 pm, tarek attia wrote: > Hi all, > > I'm doing an application that requires that certain thread access data > that's shared among it and another service.How can I protect these shared

[android-developers] Location.getspeed always returns Zero

2010-06-23 Thread tarek attia
Hi, While I'm testing the functioon that returns speed location.getSpeed() ,using GPX files I have always the return value equals to Zero no change whatever happened ?? -- tarek -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

Re: [android-developers] Sleep mode - technical documentation?

2010-06-23 Thread Mark Murphy
On Wed, Jun 23, 2010 at 9:05 PM, Steve wrote: > 1. What causes a device to enter / exit sleep mode? Lack of user input. > 2. How are running processes impacted when the device enters sleep > mode? They freeze in place, picking up when the CPU starts up again. > Are the above issues (and any ot

[android-developers] Sleep mode - technical documentation?

2010-06-23 Thread Steve
I'm trying to find some official android documentation that discusses sleep mode, with a focus on issues that might be of relevance to app developers. For example, things like: 1. What causes a device to enter / exit sleep mode? 2. How are running processes impacted when the device enters sleep

Re: [android-developers] When will Android 2.2 source code release

2010-06-23 Thread Romain Guy
It was released today :) On Wed, Jun 23, 2010 at 4:52 PM, Happy C. wrote: > > Does anyone know this news? > > Thanks. > > -- > 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@googlegr

Re: [android-developers] When will Android 2.2 source code release

2010-06-23 Thread Mark Murphy
On Wed, Jun 23, 2010 at 7:52 PM, Happy C. wrote: > Does anyone know this news? They released it a few hours ago. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Development Wiki: http://wik

[android-developers] Protect the Shared Data between service and thread

2010-06-23 Thread tarek attia
Hi all, I'm doing an application that requires that certain thread access data that's shared among it and another service.How can I protect these shared data form accessing in the same time ,,is there anything in android for that or android has nothing to do with this as Java API's will do the job

[android-developers] Crash dumps - Market vs Homegrown

2010-06-23 Thread Nathan
I've been using a home grown crash dump send during a beta period. It coudl be redundant - or confusing now that the market has one. Am I right in thinking I won't need that once the app is on the market? Or is the crash dump ability in the market limited to certain devices? Any thoughts? Natha

[android-developers] Protect the Shared Data between service and thread

2010-06-23 Thread tarek attia
Hi all, I'm doing an application that requires that certain thread access data that's shared among it and another service.How can I protect these shared data form accessing in the same time ,,is there anything in android for that or android has nothing to do with this as Java API's will do the job

Re: [android-developers] Dialog is leaked on orientation change

2010-06-23 Thread Brad Gies
You should dismiss it in OnPause and recreate it in OnResume if you still want it. On 23/06/2010 6:02 AM, Surfer wrote: Hi, built a simple app that displays an alertDialog with two buttons. The problem is it's not getting dismissed when i change orientation. After change i get a leak warning

Re: [android-developers] Lan connection

2010-06-23 Thread Brad Gies
dexter, Please include a little of your code, and some information about your LAN. We need more information to be able to help :). On 22/06/2010 5:51 AM, dexter wrote: Hi all...I'm new at programming with Android... I'm stucked at the Network topic... Basically this is what i'm trying to

[android-developers] When will Android 2.2 source code release

2010-06-23 Thread Happy C.
Does anyone know this news? Thanks. -- 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...@goog

[android-developers] Code Coverage with EMMA or Ant

2010-06-23 Thread sirvalerius
hi guys i'm tryng to do some testing in my android application, I've set-up my project in eclipse and I can successfully run my code. I've alredy written some JUnit test cases, now I'm tryng to generate a code coverage report. However it seems that there are different ways to accomplish this and t

[android-developers] froyo code drop build for adp1

2010-06-23 Thread Arno den Hond
on http://android-developers.blogspot.com/2010/06/froyo-code-drop.html it says " You can now build and boot a fully open-source system image out of the box, for the emulator, as well as for Dream (ADP1), Sapphire (ADP2), and Passion (Nexus One). " does this mean froyo will run on my adp1 ?! will it

[android-developers] Re: OpenGL works incorrectly when projection matrix is set to identity?

2010-06-23 Thread Indicator Veritatis
Leigh was right: we need more details. In the meantime, all I can offer is that a famous 'gotcha' when using OpenGL is that OpenGL has a reputation for reacting poorly when you mix float and fixed point. That is, you should specifiy all your vertices in floating point, and use the floating point AP

[android-developers] playing video in html

2010-06-23 Thread dima
hello, I'm trying to play (link to) a video on a html page. It works fine on I-phone but not on android. I tried a variety of formats including mp4 and 3gp (which) I recorded on with phone (Hero). is there a way to call the native video player from an html page? (or open an app from an href)?

Re: [android-developers] android client, pc server (JAVA) can't open TCP connection

2010-06-23 Thread Miguel Morales
Although I personally haven't done this, I believe the solutions is to forward the port using the redir command inside the emulator. Some quick googling provides some examples like: http://www.blog.droidweb.com/2009/08/developers-tip-7-android-emulator-networking/ On Mon, Jun 21, 2010 at 1:40 PM,

Re: [android-developers] Re: Broadcast receiver, service & thread

2010-06-23 Thread Mark Murphy
On Wed, Jun 23, 2010 at 7:24 PM, Federico Paolinelli wrote: > If I understood correctly, I need to bind to the service in order to > provide it a listener, and then if I want to use the onProgressUpdate > for an AsyncTask started from the service, I should notify the > listener from the onProgress

[android-developers] Re: Broadcast receiver, service & thread

2010-06-23 Thread Federico Paolinelli
First of all, many thanks for the quick reply. On 24 Giu, 01:00, Mark Murphy wrote: > On Wed, Jun 23, 2010 at 6:50 PM, Federico Paolinelli > wrote: > > Every single intent produces an action to be performed. Now the first > > question: should I start a service (maybe with non_sticky option?) or

[android-developers] Re: UI Stack over flow

2010-06-23 Thread Gabriel Simões
It´s a notebook and just as I said, this problem doesn´t happen on windows at all, on the emulator running over linux. Also, it started 3 days ago and I´m using this same system for more than 3 months. On 23 jun, 15:03, DonFrench wrote: > Try swapping in a different keyboard just to eliminate a p

[android-developers] trying to connect to sqlight db but with no succsses

2010-06-23 Thread yoav.str
lets start by saying I did mange to take data and on my application make it into data base and use this database but my problem is that I want to take db from outside and use this db in my application i made a java sql db(it works couse i browsed it on sqlight browser ) this one is the code in my a

Re: [android-developers] Broadcast receiver, service & thread

2010-06-23 Thread Mark Murphy
On Wed, Jun 23, 2010 at 6:50 PM, Federico Paolinelli wrote: > Every single intent produces an action to be performed. Now the first > question: should I start a service (maybe with non_sticky option?) or > should I start a thread (or an async task) directly from the broadcast > receiver? Definite

[android-developers] Broadcast receiver, service & thread

2010-06-23 Thread Federico Paolinelli
Hi all, I am starting to develop a new app and I am a bit confused about the structure I need to give it. I need to react to broadcast intents, so I placed a broadcast received in the manifest. Every single intent produces an action to be performed. Now the first question: should I start a servic

Re: [android-developers] Android+MapView

2010-06-23 Thread Mark Murphy
On Tue, Jun 22, 2010 at 11:02 AM, ENSI wrote: > Hi,i have recently started with android. > i'm developping a mini application and i want to print a mapView on my > screen.So i had to get a google map api key,but when doing that > "../.android/ keystore.debug"  i  couldn't read the content,i opened

[android-developers] remote exception error -Android Sqlite

2010-06-23 Thread ranjan ar
I am trying to insert a data in first page and select data from same db in second page, (in Android emulator). But when click on button in first page the cmd window shows "got remoteexception sending setactive false notification to pid" . Please help. Thank you. -- You received this message becau

Re: [android-developers] Re: Need help with a Java issue

2010-06-23 Thread Mariano Kamp
Thanks Adam. That was exactly my issue. Written on a mobile device On Jun 24, 2010 12:20 AM, "Adam Powell" wrote: > The line reporting the NPE is implicitly unboxing the Boolean returned by > your Map's get method to retrieve a primitive boolean value. If get returns > null it would have the be

Re: [android-developers] Mail Java API issues

2010-06-23 Thread Mark Murphy
On Wed, Jun 23, 2010 at 7:33 AM, jack.n wrote: > When I try to add one of the above imports to my source code the > complaint is "The import javax.mail can not be resolved." I see some > javax.* packages in the project android.jar such as javax.net and > javax.xml, but no javax.mail.* That is bec

[android-developers] Need Help with Development on Sprint HTC 4G EVO Platform.

2010-06-23 Thread Raj-Chand
Hello: We are looking for a Senior developer to help creating native Android applications on Sprint HTC 4G EVO Platform. If you currently have experience with the following, please get in touch with me ASAP. - Experience migrating Windows Mobile Apps to Android 2.1 platform - Entrepreneurial, sel

[android-developers] Re: About Monkey Script

2010-06-23 Thread bharathi raja
Use below method for delay b/w 2 event delay(5000) On Jun 22, 11:42 am, mlc wrote: > this is my Monkeyscript > type= point > count= 0 > speed= 1 > start data >> > > captureDispatchPointer(5109520,5109520,0,230,358,0,0,0,0,0,0,0); > captureDispatchPointer(5109521,5109521,1,230,358,0,0,0,0,0,0,0);

[android-developers] ADB Device offline - HTC Desire, Win 7 64bit 2

2010-06-23 Thread Emil
I have the same problem on the same configuration as the previous posted issue. I did set up my device according to the posted solution but I still get the device to be offline. This means I can not run my applications on my device. Is there any other solutions available? -- You received this mes

[android-developers] Iterating images from ImageAdapter

2010-06-23 Thread mgpyone
I could be able to set the Animation to the Gallery ImageAdapter . but I could see only first image is being iteratively , I want to set to all the images from the ImageAdapter. This's my ImageAdapter. Integer[] mImageIds = { R.drawable.mario, R.drawable.one, R.drawable.two, R.drawable

[android-developers] Testing e CodeCoverage report

2010-06-23 Thread sirvalerius
hi guys i'm tryng to do some testing in my adroid application, I've set-up my project in eclipse and I can successfoully run my code. I've alredy written some JUnit test cases, now I'm tryng to generate a code coverage report. However it seems that there are different ways to accomplish this and t

[android-developers] Extracting data with aapt

2010-06-23 Thread Surfer
Hi there. I would like to extract some data from android manifest of an apk. Using "aapt d badging my-application.apk" works but only partially, i can get most of the info i need but i'm still missing these: - if supports-screens has anydensity set to true or false - if the apk includes native libr

[android-developers] Mail Java API issues

2010-06-23 Thread jack.n
I am trying to follow the example at http://code.google.com/appengine/docs/java/mail/overview.html to add the Mail Java API to my application. According to http://code.google.com/appengine/docs/java/mail/overview.html#Sending_Mail_with_the_JavaMail_API, "All of the JavaMail classes you need are in

[android-developers] Android application

2010-06-23 Thread Idoia Olalde
Hi, I would like to create an application to establish a RFComm communication with other Bluetooth devices (not Android). I'm using the Bluetooth API. I'm able to scan nearby devices, but when I select one to connect, I get the following error: E/BluetoothEventLoop.cpp( 92): onCreateDeviceResu

[android-developers] Add app icon to car mode app

2010-06-23 Thread chris
Hello, I looked around but did not find any info about it. Is it possible to add an application icon to the Froyo car mode app (there are several place holders at the second page)? Thanks for any information, Chris -- You received this message because you are subscribed to the Google Groups "A

[android-developers] Seeking advice on a first program (includes general idea, just implementation advice.)

2010-06-23 Thread Frank Reese
Hello all, to start with I've gone through the entire notepad tutorial, I'm a professional game programmer who has some extra time. (though most of my time has been in C++, I did take a year or two of Java classes in college, and remember some of it). I'm not sure the group is a good site to ask q

[android-developers] How to know if child activity exit by unexpected exception (onActivityResult() is not called)

2010-06-23 Thread Alexey Kryshen
Hello! I have faced with issue about startActivityForResult() and onActivityResult(). If child activity started by the startActivityForResult() exit by unexpected exception the onActivityResult() is not called and I have no any ideas how can I handle this to get application working in a fail-safe

[android-developers] Delete Contact field value in SDK early 5

2010-06-23 Thread Максим Горшенин
HI All, I am trying to delete Contact field value in SDK early 5. I am using update method of ContentResolver for update value like that ContentResolver resolver = getApplicationContext().getContentResolver(); ContentValues cv = new ContentValues(); cv.put(Contacts.People.NAME,"NAME"); int count =

[android-developers] UnknownHostException in Android Emulator

2010-06-23 Thread apekshag
Hi, I am trying to run the 'Google Buzz API Sample for Android' sample and I get the error 'java.net.UnknownHostException: www.google.com' on the last line: GoogleOAuthGetTemporaryToken temporaryToken = new GoogleOAuthGetTemporaryToken(); temporaryToken.signer = createOAuthSi

[android-developers] OpenGL EGL 1.0 Context sharing does not work

2010-06-23 Thread OpenG
Hello, I have problems sharing texture resource between two OGL contexts. I have created two OGL contexts using EGL10.eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list) method. Then creating second context I pass the first OGL Context as parameter

[android-developers] Contact added through API does not get synced

2010-06-23 Thread Rodion Volkov
Hello everyone! Yes, I know there are plenty of troubles in the current contacts API, but still I want to ask one more question on the subject. I have succesfully managed to add contact with some details to the phone contacts list using this code (it may not work out-of-the-box since I copy-pasted

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-06-23 Thread MichaelL
I should receive the phone too, but they sent it back because an adress issue. Now i never heart anything about it. Google doesn't answer my mails. Anybody knows something? On 25 Mai, 09:19, bera wrote: > I asked google android team,They tell me: > > 'We are taking stock of all the returned phone

[android-developers] Package com.google.android.gtalkservice importing problem

2010-06-23 Thread madhusudhan reddy
Hi, I am not able to import com.google.android.gtalkservice package application in version 1.5(level 3).Actually that gtalkservice.jar file is under /sytem/frmaework/ is there.If i copy as external jar into prject even showing errors. If i do Gtalk application in Android 1.5 will it work on 2.2

[android-developers] Dialog is leaked on orientation change

2010-06-23 Thread Surfer
Hi, built a simple app that displays an alertDialog with two buttons. The problem is it's not getting dismissed when i change orientation. After change i get a leak warning on debugger and the dialog appears twice(pressing back hides the first dialog, only a second back dismisses it completely). An

[android-developers] Trying to move multiple widgets at the same time

2010-06-23 Thread cody hawke
Hello all, I currently have an app that uses a full screen FrameLayout that contains three simple views with background images that the user can drag left and right by setting their leftMargin when the user presses on them. One is static in the middle, one is like a slider to the left and the othe

[android-developers] Re: Avoiding GPL

2010-06-23 Thread a genius
That scam won't be legal unless the license in question is the LGPL (with an L at the front). You say that what you are interested in using is a library. Typically, libraries use the LGPL since it just makes sense that libraries allow closed source components to link to them (L is for LIBRARY), how

[android-developers] horizontal scrolling in GridView control

2010-06-23 Thread dharmveer
Hi, Instead of the currently implemented vertical scrolling in the GridView control, I want to scroll horizontally. So, I want to be able to move left and right by swiping left/right so the contents scroll horizontally. I have tried setting the setNumColumns() but that did not help. Is there any

[android-developers] Senior Android developer Position- Las Vegas; 6 months min

2010-06-23 Thread Surat
Dear Android Developers, We have a contract position in Las Vegas. Following is the job description. If you are available and interested, please revert back to me ASAP with your updated resume. Job Title: Senior Android developer. Duration: 6 Months Minimum JOB FUNCTIONS: This developer will b

[android-developers] how to disable auto pdp context activate feature?

2010-06-23 Thread SR123
All Did search the group page before posting this..apologies if already discussed and answered. Latest android sdk in a G1 phone. Through adb shell or otherwise (via sqlite and DB manipulation), is there a way to disable this feature by which a PDP context activate is automatically sent aft

[android-developers] Map API KEY

2010-06-23 Thread ENSI
hi, i can't read the content of the debug.keystore while opening it with bloc note,it's written with unreadable symbols,can anyone help me please? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-

[android-developers] Re: Weird contact behavior in 2.1 - adding phone number

2010-06-23 Thread Destra
Hello, I have the same issue :/ Did you find a solution ? Thx -- 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-d

[android-developers] Questions about grid

2010-06-23 Thread 343GS
Hi, I'm new to this whole Android developing thing and I've got a question or two about grid view. If I want to create a maze like the ones in Retro Defense, how should I go about doing it? Should I draw it out using the onDraw method or is there a game engine that can make my job easier. This is

[android-developers] How to access clipboard through Android shell

2010-06-23 Thread Tee
Hi there, I am trying to access the android clipboard through adb shell. Is this possible at all? I would like to be able to inject some data directly to the clipboard without using copy/paste step by step through the phone. Thanks, Nathan -- You received this message because you are subs

Re: [android-developers] Re: Need help with a Java issue

2010-06-23 Thread Adam Powell
The line reporting the NPE is implicitly unboxing the Boolean returned by your Map's get method to retrieve a primitive boolean value. If get returns null it would have the behavior you describe. On Tue, Jun 22, 2010 at 4:23 PM, Indicator Veritatis wrote: > Hi, Mariano > > True, this is a Java qu

[android-developers] Streaming audio AAC format

2010-06-23 Thread kabson
Hello all, I have developed a streaming app for Android. My app is streaming AAC audio. The app works fine on 1.5, 1.6, and 2.1. I tested it on Froyo, the android 2.2 and it does not work there. I have try everthing - Streaming directly from server url - Download incrementaly the content, stor

[android-developers] Android+MapView

2010-06-23 Thread ENSI
Hi,i have recently started with android. i'm developping a mini application and i want to print a mapView on my screen.So i had to get a google map api key,but when doing that "../.android/ keystore.debug" i couldn't read the content,i opened the file to get out the fingerprint MD5 (with blocnote

[android-developers] Senior Android Developer Opportunity

2010-06-23 Thread Raj-Chand
JOB FUNCTIONS: This developer will be responsible for creating native Android applications on Sprint HTC 4G EVO Platform. SKILLS/EXPERIENCE REQUIRED: Experience migrating Windows Mobile Apps to Android 2.1 platform Entrepreneurial, self-motivated individual - high energy, high activity levels

[android-developers] How to change the contrast and intensity of androind phone display programmatically?

2010-06-23 Thread SM
Hi All, I want to change the contrast and intensity of my androind phone display programmatically, how can i do it? -- 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 T

[android-developers] How do you send a carriage return to a handset using adb

2010-06-23 Thread Chris Brown
Hi All, I have tried various things to send a carriage return to a handset using adb and none worked. Examples: fails - adb shell input text "\n" fails - adb shell input text '\n' fails - alternate adb shell input keyevent 66 Is it possible to do this? Thanks in advance for any advice. Chris -

[android-developers] Re: Do I need to buy Google Maps license?

2010-06-23 Thread anwichma
hi, please ignore this, but I want to try something. So please delete this post... -- 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

[android-developers] View switching with in one tab

2010-06-23 Thread Amit
Hi, Please anybody help me how can i change activity with in a tab. I have 5 tabs and each tab has his own activity, i want to load other activity view on tab one by replacing the old activity in tab1. Please provide me any help. -- You received this message because you are subscribed to the Goo

[android-developers] I got "Problem loading widget" after updated the app from Market.

2010-06-23 Thread Tony Wu
Hi, I encounter the "Problem loading widget" if the APPs are pre-installed in the system and I updated it from Market, the widget I put on HOME screen will show "Problem loading widget". After rebooting or changing language, it will resume. If I update the APPs by "adb install -r", it will be norm

[android-developers] How to Draw route on Google map? not to use DrawPath

2010-06-23 Thread 批歐西
hello, I'm new to Android. and I parse a XML file from the following URL http://maps.google.com.tw/maps/api/directions/xml?origin=41.77732,-87.62146&destination=41.234308,-86.138306&sensor=false and I want to draw a route on Map, I found the information can help me to do this se~}FjtxuOKdEJ|JIpA

[android-developers] Testing Low Memory and onDestroy

2010-06-23 Thread Ayyrk
Testing onDestroy. Q: does using a lot of RAM in one application always lead to onDestroy being called on Activities in other applications? To try and figure this out I created two separately installed applications. The first just logs its lifecycle transitions and the second allocates a chunk of

[android-developers] View switching with in one tab

2010-06-23 Thread Amit
Hi , I have created 3 tab in my application and every tab has it's own view. in tab 1 i have a button on top which load another view on same tab but when that view load tab has been hidden this is my problem, i want view switching with in single tab by click on button. I am not able to change the

[android-developers] Re: Android 2.0 contact groups manipulation

2010-06-23 Thread Destra
Hello, Have you solved your problem 'cause I'm trying to do the same thing. Thanks -- 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, se

[android-developers] shared lib for plugin issue

2010-06-23 Thread michael
Now I am develop a shared jar lib for third plugin. The lib will be used in two apk. For example, my main project is A and the plugin project is B. B have extends from the interface in lib. So A can load B apk and load then extends class. The following the my code: The shared jar lib is: public in

[android-developers] Re: Signal Strength data for WCDMA

2010-06-23 Thread Nan
I never try this by myself but someone told me that in Android world, GSM might actually mean UMTS. For example, you use "CDMA" stack for Verizon phone and "GSM" stack for ATT phone. On May 25, 3:16 pm, carknue wrote: > >   int gsmBer = signalStrength.getGsmBitErrorRate();  // this gives me > >

[android-developers] Double Click

2010-06-23 Thread Cameron Houston
Is there a way/setting/app capable of being able to "double click" on an Icon while browsing on the phone. The way the company sets up my work calender is when I want to see what the schedule is I have to double click to open it. On a regular browser double clicking is no problem but on the EVO

[android-developers] android client, pc server (JAVA) can't open TCP connection

2010-06-23 Thread xuxu
HI all, I'm trying to open tcp connection between android (emulator) and PC. I'm trying to create a new socket and then it crash. the line where it crash: Socket s = new Socket("10.0.2.2", 27015); // trying to open a socket Can some one please please help me. thanks -- You received this message

Re: [android-developers] Avoiding GPL

2010-06-23 Thread Fabrizio Giudici
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 6/22/10 13:19 , Tom Gibara wrote: > I am not a lawyer etc. but I think you should be very careful > about trying to circumvent the GPLv3 in this way; its wording is > broad. > > You have several options without attempting this, they include: > findi

[android-developers] Filter for crapps (crap apps)

2010-06-23 Thread McDanish
Does anyone know if there is some sort of filter funktion, either in Andoid Market itself or in/as an app? I am SO tired of flipping through all those weird and for me totally useless "View pictures when you end a call" and others telling me that those jap girls are so cute and for real men. I

[android-developers] Animating an Weather appwidget present in Homescreen.

2010-06-23 Thread rams
Hi all, I have tried a weather widget and its working fine. The Weather widget is an app widget and I update the widget once in 6 hrs similar to the application on android site using AlarmManager. Now I want to animate the widget (ImageView) every 100 ms similar to HTC homescreen. I dont think Ap

[android-developers] Android eclipse download link at https://dl-ssl.google.com/android/eclipse/ broken - please fix

2010-06-23 Thread Morex
I want to get started with an Android application but can't download the plug-in. Anyone know where else I can get this? Matt. -- 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@googleg

[android-developers] playlist in SDk 2.1

2010-06-23 Thread Jeeva
Hi, SDK 2.1 allows to add single mp3 file to an playlist for multiple times. Is it behaviour of android or can be modified? and one more doubt i have setted an mp3 file as an phone ringtone. and then i have deleted the file from sdcard. in this case nothing is selected in phone ringtone menu. B

[android-developers] Animating App Widgets

2010-06-23 Thread rams
Hi all, I have tried a weather widget and its working fine. The Weather widget is an app widget and I update the widget once in 6 hrs similar to the application on android site using AlarmManager. Now I want to animate the widget (ImageView) every 100 ms similar to HTC homescreen. I dont think Ap

[android-developers] Lan connection

2010-06-23 Thread dexter
Hi all...I'm new at programming with Android... I'm stucked at the Network topic... Basically this is what i'm trying to do: I wan to send some instructions using the Http protocol to a device which has a static Ip address through a private Lan Network... So first of all I'ved Tested the Code

[android-developers] XMLPullParserException

2010-06-23 Thread Ribcakes
Hi, I'm coding an application with a basic server client interaction using xml parsing. I am trying to a long list of information from the server by using an httpGet. However, when i try to send the get, and parse it, i get the error: ERROR/org.xmlpull.v1.XmlPullParserException: expected: /meta r

[android-developers]got a problem to learn Android

2010-06-23 Thread ben linus
Hi , Does anyone can tell me how to master android fast, i am a beginner. The official doc is so tedious, i have no clue to learn it. expect your reply and thanks for it. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

[android-developers] What is the best way to Scan the SD Card for Images?

2010-06-23 Thread femi
1. I searched recusively, and loaded all the images but I think this is an inefficient way of searching on a phone, plus it means one will load many irrelevant image files like website images. 2. Is it better to just search /sdcard/dcim ? 3. I used the MediaScanner class but it seems to display

[android-developers] Re: New tutorials up - feedback welcome

2010-06-23 Thread Matt
Thanks guys. I'm planning on adding a tutorial about how to use ProGuard to shrink and obfuscate your code, which drops app sizes significantly. I was worried the tutorials were too long (or maybe my webpage design just makes the text too narrow). I guess I'll get more feedback if anything is wr

Re: [android-developers] OpenGL works incorrectly when projection matrix is set to identity?

2010-06-23 Thread Leigh McRae
It's pretty hard to say without more details. I would start out by making sure that you have a valid rendering context. Disable your regular rendering and do a hello world type of rendering such as a single triangle. Leigh On 6/23/2010 5:05 PM, satlan esh wrote: I have an OpenGL app that m

  1   2   >