[android-developers] Re: The Market App has a CACHE !

2010-10-04 Thread tony obrien
OK, I'll concede that the cache is useful for the WEB (or web-like) aspects of the MARKET app -- but (it still) seems to me that if its MAIN FUNCTION is to provide d/l of apps, then those app 'references' should not be cached but should always be refreshed. On Oct 4, 9:30 am, { Devdroid }

[android-developers] Remote tracing

2010-10-04 Thread kypriakos
How does the ADB_TRACE env variable work? The apps I am installing on a remote emulator (already running so I am only using the adb install) and I want to check on their progress .. Btw isn't the install command sufficient to install and start the apps? Or does anything more need to be

[android-developers] Re: thousands of strings

2010-10-04 Thread DanH
Cute. Android jumps through hoops to save a few lousy bytes here and there, and then folks push using SQLite for everything short of addition tables. An SQLite DB requires 3KB overhead plus about another 20 bytes per record. But more importantly, SQLite has to create substantial runtime

[android-developers] Re: thousands of strings

2010-10-04 Thread DanH
And, BTW, data file + supplementary file for faster access isn't anywhere near how SQLite operates. SQL is like a Swiss Army Knife -- great if you frequently need a corkscrew, but a lot of dead weight if you don't. On Oct 4, 1:25 pm, Tom Gibara tomgib...@gmail.com wrote: This combination of a

[android-developers] Re: unable to play rtsp video (H.264) stream in Froyo using MediaPlayer

2010-10-04 Thread Indicator Veritatis
The logs are not often straightforward to interpret. Especially not when, as has become the fashion nowadays, a lot of scary sounding error message are left in the logs even in a shipping product, when the authors of the software know the 'error' is not a real error. Now as to OpenCore vs.

Re: [android-developers] Re: Scrollable Menu Bar like Fox news app

2010-10-04 Thread TreKing
On Mon, Oct 4, 2010 at 12:07 PM, Ganapathy.C cganapa...@gmail.com wrote: But many app using that kind of menus... Many app using many things that are not built in but based on existing controls. Did you look at Gallery?

[android-developers] Hide soft keyboard

2010-10-04 Thread John Gaby
I need to be able to hide the soft keyboard in response to clicking a button. I have seen numerous posts on this subject and it seems that the solution is to use the InputMethodManager, but I have been unable to get it to work for me. Supposedly the following will hide the soft keyboard:

Re: [android-developers] Re: thousands of strings

2010-10-04 Thread Tom Gibara
I would hardly say that using a database to store a large number of strings is obfuscation. I'm not a particular fan of SQLite, but it's a case of identifying the tools that the platform makes available and evaluating them against the benefits and drawbacks of writing code to do the same thing.

[android-developers] Text To Speech API question

2010-10-04 Thread JimmyHoffa
Hi all, Just a passing thought I wanted to check out whether it's possible using the TTS engine to apply effects to voices. Without beating around the bush my 'requirement' if you can call it that is to playback a robot sounding version of whatever sentence the user has recorded using a mix of

[android-developers] Re: thousands of strings

2010-10-04 Thread DanH
Even if the code to do the index lookup is simple (and it is) you also have to write the code to generate the index, and package it in some way that will integrate with your build process. And you end up with a read-only data structure -- what if you don't foresee that users want to add

[android-developers] Re: The Market App has a CACHE !

2010-10-04 Thread Doug
On Oct 4, 11:46 am, tony obrien tobsourcecode...@gmail.com wrote: OK, I'll concede that the cache is useful for the WEB (or web-like) aspects of the MARKET app -- but (it still) seems to me that if its MAIN FUNCTION is to provide d/l of apps, then those app 'references' should not be cached

[android-developers] Re: Application not found by queryIntentActivities

2010-10-04 Thread DanH
Ran another experiment where I made the intent passed to query exactly match the one that works to start the activity later. Still no joy. On Oct 4, 1:44 pm, DanH danhi...@ieee.org wrote: And, if we skip the test and let the code continue on, a PDF is successfully displayed through a simple

Re: [android-developers] Text To Speech API question

2010-10-04 Thread berliner
Hi, what you can do is use the synthesizeToFile method of the TextToSpeech Class. That will write the result of the speech synthesis into a wav file. You can than do any processing you like on the generated file and play it back later. regards, berliner Am 04.10.2010 um 22:02 schrieb

[android-developers] Re: My first ever blog : create and call WSDL service

2010-10-04 Thread jatinkumar Patel
Miguel, Thank You for your reply. This was my very first blog. So i have no idea of formatting code in Wordpress. I googled it, but was unable to format code. Secondly, its very easy to import a library into an android project. Right Click the Project - Select Properties - Java Build Path Click

Re: [android-developers] Re: The Market App has a CACHE !

2010-10-04 Thread Greg Donald
On Mon, Oct 4, 2010 at 3:05 PM, Doug beafd...@gmail.com wrote: Take a breath, get a cup of coffee (or cut down on the coffee!). Everything's going to be all right.  Your situation is the exception, not the rule.  :-) The simplest solution is to not open the Market app before you're about to

Re: [android-developers] The ultimate, killer Android Marketplace replacement

2010-10-04 Thread Chris Stewart
Hard not to agree with you. I think Amazon poses a good step forward if they quickly expand outside of the United States, simply because they're very much global already where Google Checkout is not. -- Chris Stewart http://chriswstewart.com Fantasy

Re: [android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Chris Stewart
If they'd actually email me with this offer, I'd accept it. :) -- Chris Stewart http://chriswstewart.com Fantasy Footballhttp://chriswstewart.com/android-applications/fantasy-football/- Android app for MFL fantasy football owners On Mon, Oct 4, 2010 at 2:18 PM, Michael A.

[android-developers] Re: VerifyError reloaded

2010-10-04 Thread fadden
On Sep 30, 3:59 pm, DanH danhi...@ieee.org wrote: Of course, the real problem is that the verifier is mis-designed.  I'm guessing it uses reference chains. I'm not sure those two sentences go together. :-) -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Nathan
Amazon hasn't sent me the offer. Sure, I'll take it if they do. From secondhand information: === It seems like if your app is available on other platforms, you have to make sure to update it at the same time on Amazon’s store that you do in any other store (this will piss off a lot of

[android-developers] Re: VerifyError reloaded

2010-10-04 Thread DanH
Reference chains are slow and take up too much space. On Oct 4, 3:25 pm, fadden fad...@android.com wrote: On Sep 30, 3:59 pm, DanH danhi...@ieee.org wrote: Of course, the real problem is that the verifier is mis-designed.  I'm guessing it uses reference chains. I'm not sure those two

[android-developers] Re: thousands of strings

2010-10-04 Thread Robert
This is a perfect case for using androi's built in sqlite database! -- 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

Re: [android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Shane Isbell
On Mon, Oct 4, 2010 at 1:41 PM, Nathan critter...@crittermap.com wrote: Registration may not be affordable for free apps, but I don't think Amazon really sees free apps as a priority. Can't see why they would. Free apps are a priority because that is what drives users to the store. If users

[android-developers] Re: Android and XMLHttpRequest()

2010-10-04 Thread kypriakos
This is the output of the script on two browsers - so it seems that the emulator does not generate the same headers as firefox using this script. Running the script on Firefox: HTTP line read=[GET /myBooks_cdc_REST2/ HTTP/1.1] HTTP line read=[Host: localhost:25722] HTTP line read=[User-Agent:

[android-developers] Re: Application not found by queryIntentActivities

2010-10-04 Thread DanH
Well of course there was a coding error in that last experiment. When I pass a file with the intent then the HTC viewer is happy to acknowledge its existence. So to be reasonably certain of finding all apps that can handle an intent apparently you have to create the complete intent. On Oct 4,

[android-developers] Android Maps API + KML file

2010-10-04 Thread Tommy
Hi everyone, I have some KML files I would like to display in my map. Does anyone have an example of showing KML files in the android maps API? I know you can do it in the web api for javascript. Thanks for the time and help, Tommy -- You received this message because you are subscribed to

[android-developers] Re: Headless emulator

2010-10-04 Thread kypriakos
Yes it can be done! And that's what I need for. I was able to run it remotely using the no-window option so thanks very much Mark. Is there a way to start and stop an app remotely (through the adb) without needing to install/uninstall each time? Or is this what the Run button in Eclipse's DDMS

[android-developers] Re: Remote tracing

2010-10-04 Thread kypriakos
Never mind this post - I had troubles running the adb logcat and I thought it was the ADB_TRACE var not being set to begin with. The issue was on a corrupted emulator image. I am able to trace the progres of the installed apps now. Sorry for the extra posting On Oct 4, 2:58 pm, kypriakos

[android-developers] Re: Headless emulator

2010-10-04 Thread Diego Torres Milano
This post may contain useful information: http://stackoverflow.com/questions/2461988/automated-testing-in-android-development On Oct 4, 12:40 pm, Mark Murphy mmur...@commonsware.com wrote: On Mon, Oct 4, 2010 at 12:35 PM, kypriakos demet...@ece.neu.edu wrote: I didn't find much on this

Re: [android-developers] Re: Headless emulator

2010-10-04 Thread Mark Murphy
On Mon, Oct 4, 2010 at 4:52 PM, kypriakos demet...@ece.neu.edu wrote: Is there a way to start and stop an app remotely (through the adb) without needing to install/uninstall each time? adb shell am start will start an activity. Run that command as written in a terminal window or command prompt

Re: [android-developers] Re: Application not found by queryIntentActivities

2010-10-04 Thread Mark Murphy
On Mon, Oct 4, 2010 at 4:47 PM, DanH danhi...@ieee.org wrote: Well of course there was a coding error in that last experiment.  When I pass a file with the intent then the HTC viewer is happy to acknowledge its existence.  So to be reasonably certain of finding all apps that can handle an

[android-developers] Re: thousands of strings

2010-10-04 Thread DanH
Only don't load it from an array and create the DB on first use -- it'll take 5 minutes, which doesn't create a very good first impression. On Oct 4, 3:46 pm, Robert haser...@gmail.com wrote: This is a perfect case for using androi's built in sqlite database! -- You received this message

[android-developers] will the android emulator support opengles 2.0 in the future?

2010-10-04 Thread Satya Komatineni
From the posting so far I have seen, the current emulator as of API level 8 and Platform 2.2 does not support OpenGL ES 2.0. (Only in the emulator that the support is not there) (The support is there at API level 8 for the ES 2.0) wondering if any jone has figured out the following 1. Will the

Re: [android-developers] Re: Library Projects support ?

2010-10-04 Thread Xavier Ducrohet
Yes you can only make a 1.6 project if you have the SDK component for API 4 (==1.6). However we do update those components sometimes and we did update them to add support for library projects. Looks like you have an older version of the 1.6 component (2.2 was released at the same time as the

[android-developers] FYI if you are having trouble in using DOM Parser for parsing general response

2010-10-04 Thread Mrid
Hi, I was having problem in using DOM parser for SDK 1.6 , it was working properly on SDK 2.2. Now I figured it out. Thought of sharing it so that others dont have to waste their time. Here is the solution to make this thing work private void parseXMLResponse(String xml) throws

[android-developers] Re: will the android emulator support opengles 2.0 in the future?

2010-10-04 Thread Robert Green
FWIW - The iPhone simulator does not emulate the actual phone. Instead it routes calls to native OSX functions, simulating the environment. The Android emulator does in fact emulator an ARM CPU and runs Android OS on it, which is an important distinction between the two. When using GL in the

Re: [android-developers] Re: will the android emulator support opengles 2.0 in the future?

2010-10-04 Thread Satya Komatineni
Robert, Thank you very much. that is incredibly helpful to know. Satya On Mon, Oct 4, 2010 at 5:24 PM, Robert Green rbgrn@gmail.com wrote: FWIW - The iPhone simulator does not emulate the actual phone. Instead it routes calls to native OSX functions, simulating the environment.  The

[android-developers] Programmatically switching GPS on/off (how do they do it??)

2010-10-04 Thread mrqzzz
Hi. I red in these discussion groups that you cannot programmatically turn on/off the GPS : Mark Murphy was exhaustive, as always. But i found a 3rd party App, in the market, that creates a widget capable of switching the GPS on/off. How did they do it? Are they using a different SDK ? Thanks,

Re: [android-developers] Programmatically switching GPS on/off (how do they do it??)

2010-10-04 Thread Mark Murphy
On Mon, Oct 4, 2010 at 5:57 PM, mrqzzz marcus.ob...@gmail.com wrote: I red in these discussion groups that you cannot programmatically turn on/off the GPS : Mark Murphy was exhaustive, as always. Ummm...is exhaustive a good thing? But i found a 3rd party App, in the market, that creates a

[android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Nathan
On Oct 4, 1:46 pm, Shane Isbell shane.isb...@gmail.com wrote: On Mon, Oct 4, 2010 at 1:41 PM, Nathan critter...@crittermap.com wrote: Registration may not be affordable for free apps, but I don't think Amazon really sees free apps as a priority. Can't see why they would. Free apps are a

[android-developers] Re: Programmatically switching GPS on/off (how do they do it??)

2010-10-04 Thread mrqzzz
Ummm...is exhaustive a good thing? Sure :) If they are enabling and disabling the GPS, they found a security exploit and are exploiting it. That's only supposed to be allowed to be done by system applications. Ok, so all i can do is show the settings dialog with Intent myIntent = new

Re: [android-developers] Re: Programmatically switching GPS on/off (how do they do it??)

2010-10-04 Thread Mark Murphy
On Mon, Oct 4, 2010 at 6:26 PM, mrqzzz marcus.ob...@gmail.com wrote: Ok, so all i can do is show the settings dialog with Intent myIntent = new Intent( Settings.ACTION_SECURITY_SETTINGS ); ? Yes. (Btw, the app is called F r e e   P o w e r   W i d g e t) That's interesting. The app's splash

Re: [android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-10-04 Thread { Devdroid }
On 3 October 2010 00:58, Lance Nanek lna...@gmail.com wrote: you have some automatic tools to do that or something I never saw in my console ? Seems like a daunting task ... I ended up writing a web scraper for the publishing console using HtmlUnit. Mind sharing? -- You received this

Re: [android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Shane Isbell
On Mon, Oct 4, 2010 at 3:07 PM, Nathan critter...@crittermap.com wrote: They will get free apps without it being their priority. The $99 isn't per app, is it? A developer with paid and free apps will probably put both in there. And free apps that generate sufficient revenue through ads etc.

[android-developers] Re: thousands of strings

2010-10-04 Thread Bret Foreman
I do this in one of my apps and it runs fine in an AsyncTask without the user ever being aware. But it's a navigation overlay database so it's loaded in place by the time the user actually wants to do anything. On Oct 4, 2:11 pm, DanH danhi...@ieee.org wrote: Only don't load it from an array and

Re: [android-developers] Re: thousands of strings

2010-10-04 Thread Tom Gibara
There's no index lookup -- it's a look-at operation -- no searching. I didn't mean to imply that there was searching. And you have to write the code to build the other ways too. One way or another there must be logic to read the (presumably plain-text) source file and insert it into: --

[android-developers] Re: thousands of strings

2010-10-04 Thread DanH
But if it's a joke application, folks are going to want some jokes right off, not please wait while we initialize the database. That's a joke of the wrong sort. On Oct 4, 5:53 pm, Bret Foreman bret.fore...@gmail.com wrote: I do this in one of my apps and it runs fine in an AsyncTask without

[android-developers] Re: VerifyError reloaded

2010-10-04 Thread fadden
On Oct 4, 1:45 pm, DanH danhi...@ieee.org wrote: Reference chains are slow and take up too much space. I don't know what you mean by reference chains. Could you point out where in the code they're being used? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: thousands of strings

2010-10-04 Thread DanH
I think the main difference here is that I am not discounting alternative approaches. I'll admit that I overspoke slightly when I said it was dumb to use a DB in this case. I wouldn't say that it's smart or at all optimal, but it's not as outrageous as some other setups I've seen. But it

[android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Nathan
On Oct 4, 3:43 pm, Shane Isbell shane.isb...@gmail.com wrote: On Mon, Oct 4, 2010 at 3:07 PM, Nathan critter...@crittermap.com wrote: If you check the comments users make about Android Market vs. other markets, it's all about the number of apps. Yep, those are the people I'm talking about.

Re: [android-developers] FYI if you are having trouble in using DOM Parser for parsing general response

2010-10-04 Thread TreKing
On Mon, Oct 4, 2010 at 4:22 PM, Mrid mrid@gmail.com wrote: I was having problem in using DOM parser for SDK 1.6 And just what was this problem you faced? There have been many questions posted here with no answers - first time I've seen an answer posted with no question ...

[android-developers] Re: how to intercept javascript onclick=window.close()

2010-10-04 Thread jgaribay
thanks for replay, yes that for sure would work but that is not my page so I do not have control over the content On Oct 3, 11:21 pm, metal mikey coref...@gmail.com wrote: You could replace theJavaScript(window.close();) with some otherJavaScriptthat you can intercept. On Oct 4, 2:31 pm,

[android-developers] Re: VerifyError reloaded

2010-10-04 Thread DanH
The verifier must create what is commonly known a use-def chains for the bytecodes in a method, to determine which results from one bytecode can flow as inputs to another bytecode (data flow). The traditional way to do this (and the one used in most verifiers) is to literally construct chains --

[android-developers] Re: FYI if you are having trouble in using DOM Parser for parsing general response

2010-10-04 Thread DanH
Yeah, agreed, though I've additionally seen questions posted with no question, and answers posted with no answer. On Oct 4, 7:04 pm, TreKing treking...@gmail.com wrote: On Mon, Oct 4, 2010 at 4:22 PM, Mrid mrid@gmail.com wrote: I was having problem in using DOM parser for SDK 1.6 And

Re: [android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Shane Isbell
On Mon, Oct 4, 2010 at 5:02 PM, Nathan critter...@crittermap.com wrote: Would an Amazon customer not buy a device because it only has 10,000 apps instead of 100,000? 10K of apps is a lot but if it were only 1K, no I don't many think people would buy it. Based on your estimates,

RE: [android-developers] Re: PNG file with transparent drop shadow that appears as solid

2010-10-04 Thread 이승언
Insert png into imageview And then imageview.setAlpha(50); -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of avigadl Sent: Tuesday, October 05, 2010 3:45 AM To: Android Developers Subject: [android-developers] Re: PNG

[android-developers] Using Allocation Tracker in DDMS

2010-10-04 Thread Bret Foreman
I have an Activity that is running out of memory in CreateSurface. The logcat looks like this: 10-04 17:55:52.574: ERROR/SurfaceFlinger(1086): createSurface() failed, generateId = -12 10-04 17:55:52.574: WARN/WindowManager(1086): OutOfResourcesException creating surface 10-04 17:55:52.574:

[android-developers] Re: DDMS and Eclipse debugger in SDK 8

2010-10-04 Thread Bret Foreman
It's not a device problem. It fails with the emulator too. I uninstalled my SDK and re-installed and it didn't fix the problem. Not sure what to try next. -- 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] Re: Using Allocation Tracker in DDMS

2010-10-04 Thread Bret Foreman
I figured out a workaround to get the Allocation tracker to capture the memory stats. The bad news is that it doesn't appear that I'm allocating anything very big. I'll start a new thread to see if anyone can suggest how to debug it. -- You received this message because you are subscribed to the

[android-developers] Out of memory in CreateSurface - maybe a bug?

2010-10-04 Thread Bret Foreman
I have an Activity that is running out of memory in CreateSurface. The logcat looks like this: 10-04 18:33:06.185: ERROR/SurfaceFlinger(1086): createSurface() failed, generateId = -12 10-04 18:33:06.185: WARN/WindowManager(1086): OutOfResourcesException creating surface 10-04 18:33:06.185:

[android-developers] positioning problem with canvas.drawBitmap()

2010-10-04 Thread newbyca
i recently tried using a SurfaceView to draw a large collection of circles to a Canvas arranged in a ring shape. just to prototype the idea i originally wrote some code that effectively went like this: Paint paint = new Paint();

[android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Maps.Huge.Info (Maps API Guru)
I got the e-mail and read the terms. I decided to stick with the Android market and forget this one. I think it's going to be a dud. Then again, what do I know? -John Coryat -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Problem with reading contacts on Samsung Galaxy Europa

2010-10-04 Thread mikedroid
yes and it works perfectly like calling action_pick. good luck to android btw please join our philippine android group : http://groups.google.com/group/philippine-android-developers On Oct 4, 6:18 pm, Zarah Dominguez zarah.doming...@gmail.com wrote: Hi Mike, Seeing as you already had a

[android-developers] EditText animation onTouch - Custom animation class or ViewSwitcher

2010-10-04 Thread santoash
I have a imageView, editText and textView within a LinearLayout. I would like to animate the EditText onTouch, to make it twice as taller and display a softkeyboard so that users can type into it. I cannot figure out if I should write some custom logic in applyTransformation of animation class

[android-developers] Out of memory after executing application several times

2010-10-04 Thread caxton
HI, There is a strange out of memory error issue. I create a class to parse live streaming, and the class needs buffers to keep these raw data. Here are code snippets: /* Initial and uninitial buffer in class */ private final int MAX_BUFFER = 16; protected byte[][] m_byStreamBuf = null; // Frame

[android-developers] how to leave message in googlw market ?

2010-10-04 Thread n2v2rda2
recently i downloaded some app i want to leave comment on the store but i can only read it where can i leave comment ? app-store on phone ? or homepage ,http://www.android.com/market/ #app=com.estrongs.android.safer -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Nathan
On Oct 4, 7:14 pm, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: I got the e-mail and read the terms. I decided to stick with the Android market and forget this one. I think it's going to be a dud. Then again, what do I know? I didn't get any offer from them. Guess I should feel

[android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Kumar Bibek
I would probably stick to the Android Market. Since it is still a place where the consumer base it the largest , I guess, that's the single most important thing for me. If there is any other store which has a bigger consumer base, it would be a good idea to shift then. By consumer base, I mean,

[android-developers] Re: how to leave message in googlw market ?

2010-10-04 Thread Kumar Bibek
Go to the market. Click on Downloads. Select the app you want to comment on. You will find it. -Kumar Bibek http://techdroid.kbeanie.com On Oct 5, 9:53 am, n2v2rda2 l...@unimocnc.co.kr wrote: recently i downloaded some app i want to leave comment on the store but i can only read it where can

[android-developers] Re: Out of memory after executing application several times

2010-10-04 Thread Kumar Bibek
You might be holding on to the memory allocated even after your app is closed. Check you memory allocations. That should give you a hint. -Kumar Bibek http://techdroid.kbeanie.com On Oct 5, 9:49 am, caxton kaifu.c...@gmail.com wrote: HI, There is a strange out of memory error issue. I create

[android-developers] Re: FYI if you are having trouble in using DOM Parser for parsing general response

2010-10-04 Thread Kumar Bibek
What does this function do anyway. I could figure out looking at it. -Kumar Bibek http://techdroid.kbeanie.com On Oct 5, 5:13 am, DanH danhi...@ieee.org wrote: Yeah, agreed, though I've additionally seen questions posted with no question, and answers posted with no answer. On Oct 4, 7:04 pm,

[android-developers] Re: EditText animation onTouch - Custom animation class or ViewSwitcher

2010-10-04 Thread Kumar Bibek
Have you checked the Animation Drawables? http://developer.android.com/reference/android/graphics/drawable/AnimationDrawable.html -Kumar Bibek http://techdroid.kbeanie.com On Oct 5, 8:53 am, santoash santo...@gmail.com wrote: I have a imageView, editText and textView  within a LinearLayout. I

[android-developers] Re: Problem with reading contacts on Samsung Galaxy Europa

2010-10-04 Thread Zarah Dominguez
Great! Good job! I'm already in the group. ;) Thanks, Zarah. On Oct 5, 10:17 am, mikedroid michan...@gmail.com wrote: yes and it works perfectly like calling action_pick. good luck to android btw please join our philippine android group

<    1   2