[android-developers] How to read XML file from sdcard and parse it?

2010-01-07 Thread ROHIT
I want to access the XML file from sdcard and i want to parse thar file. How ta access this file and pass it to Parse method? -- 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@googlegroup

[android-developers] Re: abort outgoing call

2010-01-07 Thread Gulfam
Hi , I was aborting BroadCastReceiver using abortBroadcast(); method. Its working fine with 1.0 to 1.6 but on 2.0 or + its not working. I have checked the documentation that is also same in 1.0 and 2.0 but in 2.0+sdk's abortBroadCast(); method is not aborting broadcast on out going calls . I ha

[android-developers] iPhone to Android: Creating "good" Android Interfaces

2010-01-07 Thread Ben Gotow
Hey everybody, I'm porting an iPhone app to Android and I'm having trouble designing an interface that looks and feels "Android." I've read all of the design documents in the Android Dev Guide and looked through all the Google-designed apps, but I feel like the layout of activities is largely unde

[android-developers] pitch of a wavefile

2010-01-07 Thread Sukitha Udugamasooriya
Can somebody tell me how to change the pitch of a wave file in Android? -- 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 an

[android-developers] What is the defalt screensize of emulator.

2010-01-07 Thread Manoj
Please tell what is the default screensize of emulator. -- 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

[android-developers] Re: Android “hover” event i n custom layout

2010-01-07 Thread Romain Guy (Google)
The way to do it is to have the parent of your ImageView use onInterceptTouchEvent(). On Dec 26 2009, 8:06 pm, k_day wrote: > I have a custom layout that I have written that basically just > displays a bunch of ImageViews. I am handing onTouch events for all > the ImageViews in my layout. However

[android-developers] Re: OpenGL fixed point vs. floating point

2010-01-07 Thread Peter Eastman
> First you need to find exactly what kind of CPU it has. Then go to the > manufactures web site and download the docs on programming there 3d Well, yes, but I didn't mean manually. What I meant is, is there an API by which I can determine whether the device my program is running on has hardware

[android-developers] Re: what is a suitable upper limit for application size?

2010-01-07 Thread ian
I meant to reply to the public board. As I was saying, doesn't this application size limit pose a barrier to apps which use sound or video clips? Although my app has lots of pics (250), they don't amount to much really, being only 300x400.each..So this must be a problem for many apps. I suppose t

[android-developers] Re: OpenGL; GL11.glDrawTexiOES does not seem to work for Nexus One

2010-01-07 Thread ernestw
For what it's worth I call glDrawTexivOES and that seems to be working properly on the Nexus One. Ernest Woo Woo Games http://www.woogames.com On Jan 7, 9:14 pm, Streets Of Boston wrote: > I use this call (GL11.glDrawTexiOES), copied most of it from the Api > Demos' "LabelMaker" class and

[android-developers] Re: OpenGL; GL11.glDrawTexiOES does not seem to work for Nexus One

2010-01-07 Thread Robert Green
Here's what my GL setup code detected: I/WorldRenderer( 4454): Determining OpenGL Capabilities I/WorldRenderer( 4454): OpenGL Vendor [Qualcomm] I/WorldRenderer( 4454): OpenGL Renderer [Adreno] I/WorldRenderer( 4454): OpenGL Version [OpenGL ES-CM 1.1] [CM] [1.1] I/WorldRenderer( 4454): GL Extension

[android-developers] Re: OpenGL fixed point vs. floating point

2010-01-07 Thread Marc
First you need to find exactly what kind of CPU it has. Then go to the manufactures web site and download the docs on programming there 3d acceleration hardware, there you should see either a VFP(vector floating point) or a SIMD integer unit. Anyhow the native number format used internally will hav

[android-developers] Re: MediaPlayer - Sound stops when I change the layout or suddenly randomly in my game

2010-01-07 Thread Martin
Nobody has an answer? My sound stops when my application needs much cpu. What can I do? I don't want the sound to stop suddenly. Martin -- 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@g

[android-developers] Master branch of Android Source code ?

2010-01-07 Thread bluestar
How to know master branch of Android source code? I want to download Anroid 2.0-Eclair source code, but I don't know the version of master branch. So how to know master branch of Android source code? Thanks!!! -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] Dialog with backgroundDimAmount=0 may cause black screen! (Bug?)

2010-01-07 Thread Yuchih
Hello, all! For some reason, I need a dialog with "backgroundDimAmount=0". But I found that if I start a "new" emulator, show my dialog will get a black screen, and never come back even press BACK key. This will happen every time I test on 1.6 donut version. To solve it is to show any dialog witho

[android-developers] Re: SQLite encryption of file storage

2010-01-07 Thread Bill
I see that a new open-source encrypted version of SQLite is now available, SQLCipher (http://www.zetetic.net/software/sqlcipher). If only Android included this instead of the vanilla SQLite... See also http://groups.google.com/group/sqlcipher. Bill -- You received this message because you are s

Re: [android-developers] what is a suitable upper limit for application size?

2010-01-07 Thread Dan Sherman
I've filed a bug report against it, but not sure if its been address in later releases. At the time of 1.5 and 1.6, the package installer requires 4x the package size to be available during an install. That means, for a 15mb package, the user will need 60mb of free space, or else the install will

[android-developers] what is a suitable upper limit for application size?

2010-01-07 Thread ian
The tourism related app I am completing has about 250 images for a total of maybe 15MB. I;d like to add another 100 or so images but sometimes I get an 'Insufficient storage' error message and have to restart the emulator. That in itself isn't so bad a problem but now I'm wondering about practical

[android-developers] Select multiple photos from a file browser?

2010-01-07 Thread kevin.hooke
Is there a way to select multiple photos instead of just one using Intent.ACTION_PICK? I'm doing something like this: Intent photoPickerIntent = new Intent (Intent.ACTION_PICK); photoPickerIntent.setType("image/*"); startActivityForResult(photoPicke

[android-developers] Flowing View Group

2010-01-07 Thread Brion Emde
One of the things I wanted was a ViewGroup that I could plug an adapter into. It would work like the GridView and be much simpler. I could use it in ListViews and things wouldn't get weird. I built something that fills those needs for me. You could put any type of view into the grid. Take a look

[android-developers] Active Activity?

2010-01-07 Thread Beth
Hi all, Is there a way to find out what is on the screen at any given point in time? In a broadcast receiver, I would like to determine if a specific activity is onscreen. Is it possible? In that activity I have a button that is assigned two different functions and is labeled with text to match

[android-developers] OpenGL; GL11.glDrawTexiOES does not seem to work for Nexus One

2010-01-07 Thread Streets Of Boston
I use this call (GL11.glDrawTexiOES), copied most of it from the Api Demos' "LabelMaker" class and it works on every Android phone, so far. However, i tested it on the Nexus One and nothing is rendered when using glDrawTexiOES. I tried the floating-point version of this call as well... nothing...

[android-developers] Re: can write youtube api on android?

2010-01-07 Thread tstanly
thanks for your reply, however, I try the same code and same libs in the Android project and java project (within Eclipse), and the Android project will get the above problems that I mentioned for, but int the java project there will not get the problem, it's work normally! thanks On 1月7日, 上午1時

Re: [android-developers] Re: Performance issue: Dalvik VM is >20x slower than most modern Java VMs

2010-01-07 Thread Sena Gbeckor-Kove
Flan not 2.1 which is still Eclair. S --- Sena Gbeckor-Kove CTO/Founder - imKon UK : +44 7788 146652 NL : +31 62 434 1290 s...@imkon.com|www.imkon.com Asia (Singapore) : 35 Selegie Road, #09-14/15 Parklane Shopping Mall, 188307 Singapore, Singapore Europe (London) : 145-157 St Jo

[android-developers] Re: Reccomendation for phone with Bluetooth SPP?

2010-01-07 Thread silverfox
FWIW, I decided to order the Nexus One. I had been under the impression that they weren't going to be shipping them until March but that was incorrect and they are filling orders now -- not my order (yet), but I don't think it will be too long now. On Jan 6, 11:55 am, silverfox wrote: > I am jus

[android-developers] No emulator support for WQVGA and FWQVGA (normal screen/low density) skins?

2010-01-07 Thread OldSkoolMark
I'm trying to make my app ready for all 1.6 devices, and am testing with the emulator. Per table 1 in http://developer.android.com/guide/practices/screens_support.html#testing I need to test the normal size / low density case, right? Why is these two skins not 'built-in'? Is merely specifying a

[android-developers] Re: SeekBar

2010-01-07 Thread Business Talk
you are right, I just tested it. It can't be done. On Jan 7, 7:30 pm, Mark Murphy wrote: > Business Talk wrote: > > Has anybody tried to use the SeekBar in the window's title bar, > > instead of the ProgressBar, using the requestWindowFeature > > (Window.FEATURE_PROGRESS);? > > I do not believe t

[android-developers] Re: Problems with

2010-01-07 Thread Brion Emde
I found the problem. For some reason I had <... type="dimension" /> instead of format="dimension /> On Jan 7, 5:22 pm, Brion Emde wrote: > When I try to declare any non android:names in my attrs.xml file, I > get a horrible error. > > Here's the file, for a custom styleable component: > > > >

[android-developers] Re: How to write ContentProvider for content not stored in a file nor DB?

2010-01-07 Thread gnugu
Data is encrypted and stored in the file. ContentProvider decrypts data and I would like to avoid to write decrypted data to the file just to get file descriptor. How did you implement yours? Thanks. On Jan 7, 4:34 pm, Brion Emde wrote: > You don't say where your data is stored. I'm fetching da

[android-developers] Re: How to write ContentProvider for content not stored in a file nor DB?

2010-01-07 Thread Brion Emde
You don't say where your data is stored. I'm fetching data from a web service in JSON format. I decided to encapsulate the interactions with the service, which is RESTful, as a ContentProvider for Android. It's working well, so far. I still need to integrate authentication. On Jan 7, 3:08 pm, gnug

Re: [android-developers] Developer console stopped updating?

2010-01-07 Thread Greg Donald
On Thu, Jan 7, 2010 at 6:26 PM, nubin...@gmail.com wrote: > My "total" and "active install" numbers in Developer Console have not > been changing for more than 36 hours -- for all 5 apps that I publish. > Has anyone seen the same thing? Yes, the issue has been going on for about 48 hours now. Fe

Re: [android-developers] SeekBar

2010-01-07 Thread Mark Murphy
Business Talk wrote: > Has anybody tried to use the SeekBar in the window's title bar, > instead of the ProgressBar, using the requestWindowFeature > (Window.FEATURE_PROGRESS);? > I do not believe that is possible. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commo

[android-developers] SeekBar

2010-01-07 Thread Business Talk
Has anybody tried to use the SeekBar in the window's title bar, instead of the ProgressBar, using the requestWindowFeature (Window.FEATURE_PROGRESS);? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to andro

[android-developers] Developer console stopped updating?

2010-01-07 Thread nubin...@gmail.com
My "total" and "active install" numbers in Developer Console have not been changing for more than 36 hours -- for all 5 apps that I publish. Has anyone seen the same thing? The ranking of my apps haven't been dropping yet (touch wood) so maybe just I am getting a stale view of the numbers? Gods o

[android-developers] Problems with

2010-01-07 Thread Brion Emde
When I try to declare any non android:names in my attrs.xml file, I get a horrible error. Here's the file, for a custom styleable component:

[android-developers] Re: ProgressBar

2010-01-07 Thread Business Talk
Thanks Moto On Jan 7, 7:09 pm, Moto wrote: > That would be a seekbar not a progressbar ;) > > On Jan 7, 6:45 pm, Business Talk wrote: > > > > > Is there any interactive progress bar, similar to the music player > > progress bar? It shows the progress but it also allows to move the > > cursor bac

[android-developers] Re: ProgressBar

2010-01-07 Thread Moto
That would be a seekbar not a progressbar ;) On Jan 7, 6:45 pm, Business Talk wrote: > Is there any interactive progress bar, similar to the music player > progress bar? It shows the progress but it also allows to move the > cursor back and forth. -- You received this message because you are sub

Re: [android-developers] Wrapping horizontal list view?

2010-01-07 Thread Romain Guy
You can use a Gallery widget. On Thu, Jan 7, 2010 at 3:48 PM, Marcus wrote: > I'm attempting to create a list view that shows clickable items that > wrap horizontally much like the To/From/CC/BCC fields in OS X and the > iPhone's Mail programs or like the TO field in Facebook's messages > (really

[android-developers] Wrapping horizontal list view?

2010-01-07 Thread Marcus
I'm attempting to create a list view that shows clickable items that wrap horizontally much like the To/From/CC/BCC fields in OS X and the iPhone's Mail programs or like the TO field in Facebook's messages (really like most mail programs). My questions are: 1. Is there a way to do this with a List

[android-developers] ProgressBar

2010-01-07 Thread Business Talk
Is there any interactive progress bar, similar to the music player progress bar? It shows the progress but it also allows to move the cursor back and forth. -- 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: Reminder IRC office hours today 5:00- 6:00 PST

2010-01-07 Thread Megha Joshi
Answers to 12/17 office hours have been posted: http://moderator.appspot.com/#15/e=120951&t=121ce5 2010/1/7 Megha Joshi > > Office hours Thursday Jan 7th 5:00 - 6:00 PST, post questions @ > http://moderator.appspot.com/#15/e=120951&t=126bf1 > > Thanks, > Megha > -- You received this message bec

[android-developers] Any way to go from an itermId to position in a ListView/Adapter

2010-01-07 Thread Ambarish Malpani
Hi, In a ListView/CursorAdapter, it is easy to go from a position to an itemId ((CursorAdapter)(listView.getAdapter()).getItemId(position); Is there any way to do the reverse mapping? From an itemId, get its position in the list? Thanks, Ambarish -- You received this message because you ar

[android-developers] Expandable View

2010-01-07 Thread Business Talk
I am looking for a view that can be expended by dragging the it's handle, the way the notification view can be opened by dragging its handle downwards. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to andr

[android-developers] Re: Needing an Android Developer

2010-01-07 Thread Navneet Chalana
Hello, Could you work on C2C basis for this spot? Regards Navneet Chalana On Jan 7, 2:26 pm, Charity wrote: > I am recruiting for an Android Developer for my company in NW > Arkansas. We are a technology based company and we will need an > experienced developer here at our facility for approxi

[android-developers] Re: BACKTRACK on Motorola BACKFLIP

2010-01-07 Thread String
Thanks for the info. I'm sure I'm not the only developer who feared there'd be a private API for the touchpad, and we appreciate you taking the time to set us straight. String On 7 Jan, 19:22, annas wrote: > With the press release announcing the latest Motorola Android device, > the BACKFLIP, we

[android-developers] Long Term Contract Position_ Android Developer _CA

2010-01-07 Thread Navneet Chalana
Hello Friends, Hope you are doing great We are looking for energetic, smart, self-starting J2ME/Android engineers to join the team and help make a daily impact on our product and the company's overall growth. I wanted to contact you to see if you are available and comfortable with below mentioned

[android-developers] Re: OpenGL fixed point vs. floating point

2010-01-07 Thread Peter Eastman
That looks like a lot of interesting and useful performance information, but I didn't actually see any answers to my questions there. In fact, the only discussion of fixed point versus floating point was in relation to a physics algorithm. I don't have questions about my physics code, because I'l

[android-developers] How to write ContentProvider for content not stored in a file nor DB?

2010-01-07 Thread gnugu
Hi, I'm writing a ContentProvider that will provide content that is not stored in a file or database. I understand hat I have to overwrite openAssetFile() method. My problem is that I don't know how to create AssetFileDescriptor from data in memory (byte array or stream). Can anybody please poin

[android-developers] Re: Updating a pre-installed application

2010-01-07 Thread John Seghers
OK... I figured it out. Needed to add a file to /system/etc/permissions linking mapping the library name to the jar file--then reboot. - John On Jan 7, 1:39 pm, John Seghers wrote: > Hi Dianne, > > Thank you for your help with this. > > I'm trying to implement the shared library so that hopefull

[android-developers] https with user+password

2010-01-07 Thread dmanbuhnik
Hi, I'm trying to build an application that will connect to my network provider and retrieve my current billing status. the site is in https and require a user and a password to get it how do i do that? (if i have the source code of the page in a string/inputstrem/file/ whatever then i'm set, al

[android-developers] Needing an Android Developer

2010-01-07 Thread Charity
I am recruiting for an Android Developer for my company in NW Arkansas. We are a technology based company and we will need an experienced developer here at our facility for approximately 2 weeks. If this is something that might interest anyone please send my your resume to cdezu...@rr-solutions.us.

[android-developers] Strange issue with webkit

2010-01-07 Thread Shino
Hi, I have a strange issue with Android 2.0.1. The french site http://wap.ratp.fr just fail to render correctly. It works great with Android 1.6 and earlier version. I fill an issue here http://code.google.com/p/android/issues/detail?id=5768 adding some HTTP streams dump to prove it's not wap.rat

[android-developers] Re: abort outgoing call

2010-01-07 Thread Alejandro D. Garin
just found the answer: use setResultData(null) on the BroadcastReceiver Thanks On Thu, Jan 7, 2010 at 4:13 PM, Alejandro D. Garin wrote: > Hi, > > Suppose I want to replace a short number dialed by the user (i.e. 1234) by > a full mapped real number (4081234). So I should intercept the out

[android-developers] BACKTRACK on Motorola BACKFLIP

2010-01-07 Thread annas
With the press release announcing the latest Motorola Android device, the BACKFLIP, we are getting quite a few questions on the addition of a rear touchpad. As a developer you can take advantage of the touchpad through the standard Android APIs offered in the event model. The experience, however,

[android-developers] Public calendar API for android

2010-01-07 Thread Steve
Hi. Is someone from Google able to advise when the android SDK is likely to include a public API for reading/writing event data to the user's calendar? Searching the forums I see that this is a much desired feature by many developers but I haven't seen any indication as to when (or even if) this

[android-developers] Reminder IRC office hours today 5:00- 6:00 PST

2010-01-07 Thread Megha Joshi
Office hours Thursday Jan 7th 5:00 - 6:00 PST, post questions @ http://moderator.appspot.com/#15/e=120951&t=126bf1 Thanks, Megha -- 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] Re: Difference between ImageView.setImageBitmap() and RemoteView.setImageViewBitmap() ????

2010-01-07 Thread gnugu
Jeff, I'm trying to create AssetFileDescriptor from byte array. Could you please provide some example how to create AssetFileDescriptor without writing into a file system? Thanks. On Dec 8 2009, 12:50 am, Jeff Sharkey wrote: > One alternative you can use is RemoteViews.setImageViewUri(), and th

[android-developers] Re: Save a highscore-list to the internal memory or the sd-card?

2010-01-07 Thread Martin
Hi! Thank you! For all of you, I wrote a Highscore-Class to save Highscore-Lists. You can create a new Instance like this: Highscore highscore = new Highscore(this); //"this" is the Context You can add a Score to the Highscore-List with this command: highscore.addScore("Martin", Global.score);

[android-developers] Re: Updating a pre-installed application

2010-01-07 Thread John Seghers
Hi Dianne, Thank you for your help with this. I'm trying to implement the shared library so that hopefully if we ever need to use this, the Market will support that kind of filtering by that time. Also, since we report to our servers an ID unique to carrier/oem/handset, we want to carry this inf

Re: [android-developers] App crashes on Droid, works fine on G1

2010-01-07 Thread Dianne Hackborn
What is the stack crawl of the crash? On Thu, Jan 7, 2010 at 1:12 PM, MJB wrote: > Hi All, > I'm having a problem where my app crashes on the Droid and seems to > work fine on the G1. We have a G1 dev phone but do not have access to > a Droid phone, so the issue is difficult to debug at this st

Re: [android-developers] Re: Performance issue: Dalvik VM is >20x slower than most modern Java VMs

2010-01-07 Thread Dianne Hackborn
Fyi, there is no Dalvik or Android compiler; the Java code is just compiled with the regular javac. On Thu, Jan 7, 2010 at 9:03 AM, Biosopher wrote: > Hi dm1973, > > Actually these tests are not useless. Of course good modern compilers > should optimize away the code above. The reality is that

[android-developers] App crashes on Droid, works fine on G1

2010-01-07 Thread MJB
Hi All, I'm having a problem where my app crashes on the Droid and seems to work fine on the G1. We have a G1 dev phone but do not have access to a Droid phone, so the issue is difficult to debug at this stage. The app loads up the main screen okay, but once the user moves beyond the main screen,

[android-developers] Re: Numeric-only soft keyboard

2010-01-07 Thread Ajay
That doesn't work. You still can't enter special characters, +, -, etc... I want to default to numeric but still allow other characters On Dec 15 2009, 1:43 pm, xinit wrote: > Hi ! > > Add this to your EditText layout > > numeric:decimal > > Regards > > Gerard > > On Dec 14, 10:46 pm, Ajay wrot

Re: [android-developers] market doesn't refresh downloads?

2010-01-07 Thread Greg Donald
2010/1/7 Éva Lovrencsics : > My downloads and installs stopped two days ago, and I don't see any > changes on the market (developer console). They never stay the same, > so I think, market doesn't refresh them. > Anybody recognized this? Marketplace stats have not updated for about 48 hours. My e

[android-developers] Queue messages with SmsManager

2010-01-07 Thread Hussain
The SmsManager class' method to send is: void sendTextMessage(String destinationAddress, String scAddress, String text, Intent sentIntent, Intent deliveryIntent, Intent failedIntent) The intent handlers for delivery and failure implies that this method sends messages interactively. I am work

[android-developers] Confusion about using Camera to take pictures from my application

2010-01-07 Thread rben
I've been trying to write an application that uses the Camera App to take a picture. So far, the only thing I've been able to get back successfully is a tiny bitmap picture. I've found several other posts related to this topic that have code that is reported to work, but it does not work for me. I'

[android-developers] Calendar Weekly View - Android 1.6 and 2.0

2010-01-07 Thread Kenny Hayes
Noticed that Android 2.0 allows you to see the text in the Calendar's Event's Name in the WEEKLY View. Is it possible in 1.6 as well? Currently just a colored block and no text. Have to actually click each event one by one to bring up the Event's Name. But would like to see the entire week and

[android-developers] Problem about adding app widget into my application(custom home screen)

2010-01-07 Thread Leo
Hi, I would like to add app widgets in my own custom home screen, but there are some problems about it. Since I have read https://groups.google.com/group/android-developers/browse_thread/thread/25c0a42655126c1b/e95302777a14d3b5?q=appwidgethost&pli=1 http://www.mail-archive.com/android-developers@

[android-developers] any news or idea about how to access to google account parameters?

2010-01-07 Thread remy berrebi
hi, i'm looking since hours how i can read google account setting used by calendar or Gmail for example. I'm also looking if it's possible to change this by some code, that switch google account setting. thanks a lot for your help. regards, -- You received this message because you are subscribed

[android-developers] Email ContentProvider

2010-01-07 Thread SK
hi , I could see Email ContentProvider in Email application( under packages/ apps/Email/src/com/android/email/provider). Why was it not exported in SDK or am I blind?. If this is not exported, was there any way I could read Email from other apps?. Thanks. Regards, SK. -- You received this messa

[android-developers] Urgent Openings for Android Programmers - Bangalore

2010-01-07 Thread Md Aariff - Recruiter - TIETO CORPORATION
Hi, Greetings!! This is Aariff and I am part of the resourcing team of Tieto Corporation (http://www.tieto.in). About the Requirement Job Description: -->Should be a self-starter and should be prepared to stretch and devise solutions that not only resolve the problem but also improve the product ca

[android-developers] Mapview + Tab example

2010-01-07 Thread nr1
Hi, i need to have an mapview on a tab. The attached example (http://www24.zippyshare.com/v/37272515/ file.html) shows how to do this if using intents. Now i want to change the zoom level of the mapview(s). How can i do this, although i'm using intents (or is there completely different solution)?

[android-developers] Re: EditText default soft keyboard (alpha vs. digit)?

2010-01-07 Thread Justin Matthews
Has anyone been able to find a solution for this? It has now been asked a couple times: http://groups.google.com/group/android-developers/browse_thread/thread/c3e5971c110faa95/c58de37e472fe2c4?lnk=gst&q=soft+keyboard+ime#c58de37e472fe2c4 Thanks. -justin On Dec 24 2009, 3:07 pm, Keith Wiley wrot

[android-developers] Re: Reliable GPS location

2010-01-07 Thread nr1
One more question: What do you exactly mean by get the actual Time? If can compare the fix time with something like System.currentTimeMillis(), but this will just work if a correct time is set on the device. The GPS system time would be better, but i seems that it's not retrievable on SDK 1.6 as f

[android-developers] Problem with song's ID3 Genre tag. If tag isn't present can't ID Song..

2010-01-07 Thread Rome49
Hi everyone I been trying to find some way to add music recognition to my app to id music with no ID3 Genre tag but keep falling short.. If anyone has some answers I will be grateful to her them.. Thank you -- You received this message because you are subscribed to the Google Groups "Android Deve

[android-developers] Mail stays in my Outbox - Using Exchange ActiveSync

2010-01-07 Thread Kim Ras
Hi All, Just bought a htc Tattoo... I really like it, it is small which of caurse is good or bad... Anyway.. I have synced my mail with the company's Exchange server and Mail in, Contact both ways and Calender Both ways works really well, but I can not send mails from my Tattoo.. The Mails stays i

[android-developers] Re: How to Calculate Temperature

2010-01-07 Thread Navigateur
My device (Motorola DEXT) does support it but it's phone temperature not the room temperature. On Nov 27 2009, 5:01 pm, Mark Murphy wrote: > SIDIBE Ali-Broma wrote: > > I want to determinetemperatureof my phone based SensorManager? > > > In Sensor we have a SENOR_TEMPERATURE! > > How i can use it

[android-developers] Best free hollywood moives downloads. Over 50 beautiful sketches ...

2010-01-07 Thread annie khan
HOLLYWOOD TEEN MOVIES HOMEPAGE Hollywood Teen Movies Featuring movie reviews, pictures, posters, history, trivia, quotes, profiles, galleries, latest teen movie news & much much more. www.hollywood-moives.blogspot.com/ www.hollywood.moives.tk/ -- You received this message because you are subscrib

[android-developers] abort outgoing call

2010-01-07 Thread Alejandro D. Garin
Hi, Suppose I want to replace a short number dialed by the user (i.e. 1234) by a full mapped real number (4081234). So I should intercept the outgoing call, abort it, and dial the correct real number. Although I'm able to detect the outgoing call by a BroadcastReceiver class my problem is tha

[android-developers] The Android display on beagleboard doesn't show

2010-01-07 Thread Michael Wu
Hello, everybody. I installed the android and linux kernel which Beagle Board released in my OMAP3530 device, I have modified the omap3_android_beagle_defconfig to enter the kernel on my device, The clock is correct, and so do the xres and yres. omapfb: Pixclock 72000 kHz hfreq 43.3 kHz vfreq 58

[android-developers] Re: PVMFFailure when using MediaPlayer for radio streams

2010-01-07 Thread HC
But if non-streamable video? On 2009年12月14日, 下午5�r13分, YaushiIizuka wrote: > Hi. > > String url = "http://your.url";; > MediaPlayer mp = new MediaPlayer(); > mp.setDataSource(url); > mp.setAudioStreamType(AudioManager.STREAM_MUSIC); > mp.prepare(); > mp.start(); > > On 10月23日, 午後3:28, dede wrot

[android-developers] Android applications using the Android framework

2010-01-07 Thread periyasamy mathes
bigchurch.com -- 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...@googlegroups

[android-developers] locales supported for voice dialer app

2010-01-07 Thread techietone
hi all, I have seen in the recognizer.java file that the default locale used for voice recognition is Locale.US . Which are the other locales supported ? regards pritesh -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

[android-developers] How to evaluate a javascript function

2010-01-07 Thread sathish chandra
hi, How to evaluate a javascript function loaded in a webview and get the return value Regards Sathish -- 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 unsubscri

[android-developers] how to use speech recongintion java classes for launching music player app

2010-01-07 Thread techietone
hi all, there are some java classes exposed for speech recognition . How can they be used for launching a music player app. or maybe control the music player using voice commands. regards techietone -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Removing the stack of Activity

2010-01-07 Thread Beena
Hi All, I have problem of removing activity. I have 5 Activities in sequence Activity1, Activity2, Activity3, Activity4, Activity5. When I am at Activity5 there is a button through I can go to Activity2. Means jump from 5 to 2 with removing the Activity3 & 4. How can I do that? Please help regard

[android-developers] Reccomendation for phone with Bluetooth SPP?

2010-01-07 Thread silverfox
I am just beginning my first Android project and it involves using Bluetooth SPP. Since the emulator does not support Bluetooth, I decided I need to bite the bullet and buy a phone. Should I get an ADP2 or a Droid or just be patient and wait for a Nexus One? Advantages or disadvantages of one cho

[android-developers] User preference for background service

2010-01-07 Thread usml
Hi, I have a background service which get started on power up, works fine. Now I want to add preferences, and bring up the preferences editor ONLY when user clicks the application icon from launch pad.Here's what I have in manifest:

[android-developers] trouble with OpenGL ES extension

2010-01-07 Thread mhorse
Our team is developing a 3D game engine based on Android NDK 1.6. The target hardware is HTC G1. However, I had a trouble with using OpenGL ES extension. Although HTC G1 supporting GL_ARB_vertex_buffer_object extension, I can not find any obvious improving performance after I uesd it in my programe

[android-developers] Re: Reliable GPS location

2010-01-07 Thread nr1
thx! On 5 Jan., 00:48, Daan wrote: > You can use Location.getTime() this returns the UTC time of this fix, > in milliseconds since January 1, 1970. Then you could get the current > time and compare it to see if you find it accurate enough. > > On Jan 4, 10:14 pm, Lance Nanek wrote: > > > You can

[android-developers] XMl Verification Failed while installing Android SDK

2010-01-07 Thread Lord
Hi I am getting this error while trying to install the available packages.I have used the Force Https to Http setting. I am a windoz user. XML verification failed for http://dl-ssl.google.com/android/repository/repository.xml. Error: Content is not allowed in prolog. Any pointers??? -- You r

[android-developers] Android Monkey Testing.

2010-01-07 Thread satish
Hi All, I am executing Monkey testing on a Android device. The command i am using is "adb shell monkey -p com.android.calculator2 -v 5000 > monkey-calculator.txt" When we execute this command i suppose it should send 5000 events to the device.In my case after sending event #150900 it stop

[android-developers] Re: How to access an item form ListView

2010-01-07 Thread zv
I think the easiest way is to keep track of the checked state in a member array/list. Something like this. boolean[] selectedItems = new boolean[10]; void handleItemClick(View view, long rowId) { CompoundButton checkBox = (CompoundButton) view.findViewById(android.R.i

Re: [android-developers] Re: Anyone noticing more uninstalls of their app than usual over last weekend/today?

2010-01-07 Thread Greg Donald
On Thu, Jan 7, 2010 at 2:00 PM, dadical wrote: > Did anyone else see this get fixed?  I saw a 10pt drop from about 45 > percent installed to under 35 in less than a day.  Things are slowly > climbing back up, but I haven't seen any "fix" yet. There's been no fix from Google, just that one person

[android-developers] Charting in Android?

2010-01-07 Thread to...@webpro.com
Hey, I was wondering how charting works with android. Can I use the google chart api or would I have to use something like aiCharts http://www.artfulbits.com/Android/aiCharts.aspx -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to th

[android-developers] Re: Anyone noticing more uninstalls of their app than usual over last weekend/today?

2010-01-07 Thread dadical
Did anyone else see this get fixed? I saw a 10pt drop from about 45 percent installed to under 35 in less than a day. Things are slowly climbing back up, but I haven't seen any "fix" yet. On Dec 22 2009, 8:52 pm, Justin Giles wrote: > Here's an official answer: > > http://www.google.com/support

[android-developers] Re: How to make any service running automatically when the phone is turned on.

2010-01-07 Thread Nymann
Hi My best shot will be, U make a receiver and get the following intent. The start u service from this receiver, and off course define the receiver extending BroadCastReceiver Hope this helps. Per On Jan 7, 7:01 am, Manoj wrote:

[android-developers] Re: Redirect in WebView

2010-01-07 Thread nikhil
Ok I got itNeed to add webviewclient to the webview so that the redirect works.. On Jan 7, 10:28 am, nikhil wrote: > Any clue guys? > > On Jan 5, 10:20 am, nikhil wrote: > > > I am trying to open a URL using a webview. This URL redirects itself > > to another page. For some reason theredire

Re: [android-developers] Re: Enhancement to Emulator

2010-01-07 Thread Disconnect
I do have a can opener.. :P On Thu, Jan 7, 2010 at 2:25 PM, David Turner wrote: > > > On Thu, Jan 7, 2010 at 11:12 AM, Disconnect wrote: > >> Dev phone 2 - dev phone 1 firmware is still hidden/removed. >> >> Also, for the "planned for 2010" features, where can we see a list of such >> items? >>

[android-developers] Re: Multitouch support in Android 2.0

2010-01-07 Thread Mirmathrax
Thank you Dianne, >From the following code: if(numevents > 1) ptrId = (action & MotionEvent.ACTION_POINTER_ID_MASK) MotionEvent.ACTION_POINTER_ID_SHIFT; action = action & MotionEvent.ACTION_MASK; int ptrIndex = event.findPointerIndex(ptrId);

Re: [android-developers] Re: Enhancement to Emulator

2010-01-07 Thread David Turner
On Thu, Jan 7, 2010 at 11:12 AM, Disconnect wrote: > Dev phone 2 - dev phone 1 firmware is still hidden/removed. > > Also, for the "planned for 2010" features, where can we see a list of such > items? > > You can't, it's in my head :-) > On Thu, Jan 7, 2010 at 1:58 PM, theSmith wrote: > >> Not

  1   2   >