[android-developers] Re: Online resources for Game App development.

2012-03-05 Thread kapil Ramchandani
Thanks for reply. On Mar 4, 1:25 am, Jim Graham spooky1...@gmail.com wrote: On Sat, Mar 03, 2012 at 06:03:08AM -0800, kapil Ramchandani wrote: Need help or sources for Android Game application development. 1) Always a valuable resource:  The Android Developers Guide 2) Buy a copy of

Re: [android-developers] Problem with drawing text in scaled Canvas on Android 4.0

2012-03-05 Thread Kaloyan Donev
Hi, The measure functions are in Paint. The scale functions are in Canvas. So I can only measure text without any scale. And if I measure the width and height of some text and want to draw a rectangle around it and want to use the scale of canvas for zooming. On some zooms the text is a little

Re: [android-developers] API's use

2012-03-05 Thread megha agrawal
Please Reply how to use API's in Android Application... I need to use Zomato API for my project. Thanks On Sun, Mar 4, 2012 at 11:54 AM, megha agrawal megha14.2...@gmail.comwrote: Hello All, I want to use Zomato APIs in my android application. Does anyone know how to proceed for the same?

Re: [android-developers] API's use

2012-03-05 Thread Ankita Kashyap
Hi Megha! It would be simple consuming of JSON/XML response via your android code. Like all other APIs, you would need an API key that you need to get from Zomato site by registering. For further info, check: http://www.zomato.com/api/documentation BR, Ankita On Mon, Mar 5, 2012 at 2:26 PM,

Re: [android-developers] API's use

2012-03-05 Thread Chalavadi Sagar
In order to integrate the api into your android application you need add the jar file into your application so that you will get the access to all the classes which were implemented in that jar file. Kind Regards, Ch.B.Sagar. On Mon, Mar 5, 2012 at 2:26 PM, megha agrawal

Re: [android-developers] API's use

2012-03-05 Thread megha agrawal
Hi Ankita Thanks for reply!! Actually I have never worked on Android, it is my first time. I have already got key from Zomato, but don't know how to use it in code? On Mon, Mar 5, 2012 at 2:38 PM, Ankita Kashyap ankita.kashyap@gmail.com wrote: Hi Megha! It would be simple consuming of

[android-developers] sqlite database on phone creash

2012-03-05 Thread Jagruti Sangani
hello, i have use the sqlite databse for storing and retrive the value during application run.It is work perfectly when i run my apllication on emulator but when i run my application on phone then when try to get data from database then it will crash the application.So anybody know hot to use the

Re: [android-developers] API's use

2012-03-05 Thread megha agrawal
Sorry but I don't understand which jar files?? On Mon, Mar 5, 2012 at 2:42 PM, Chalavadi Sagar sagarchalav...@gmail.comwrote: In order to integrate the api into your android application you need add the jar file into your application so that you will get the access to all the classes which

[android-developers] Selling an app: Sales Tax and Tax Returns?

2012-03-05 Thread bigluc
I am a young developer (under 18), and am wondering about selling an app, but wonder about taxes. I live in California, US and have a parent who can file taxes. I am wondering if I need a buissness, report sales, or file a tax return on profit that I make from a paid app. -- You received

[android-developers] About Keyboard.Key

2012-03-05 Thread 晓 孙
I want to change the heigh of a Key in SoftKeyboard ,but I cannot find any public method,can you help me ? That is to say , I want to make the Key bigger when I bit it. Please tell my how to get the bitted Key (it's id or something else) and how to set the Hight and Width. Thank you ! -- You

Re: [android-developers] API's use

2012-03-05 Thread David Olsson
How about reading How it works at http://www.zomato.com/api and then sign up for an API key? /David On Mon, Mar 5, 2012 at 9:56 AM, megha agrawal megha14.2...@gmail.comwrote: Please Reply how to use API's in Android Application... I need to use Zomato API for my project. Thanks On Sun,

[android-developers] Re: API's use

2012-03-05 Thread David
Hi, http://www.zomato.com/api Sign up for an API key? Read how it works. And follow their guidelines and rules. /David On 5 mar, 09:56, megha agrawal megha14.2...@gmail.com wrote: Please Reply how to use API's in Android Application... I need to use Zomato API for my project. Thanks On

[android-developers] where to add code prior to any app execution?

2012-03-05 Thread andromeda-
I am new to android, any help/suggestion would be highly appreciated. Here is what I want to achieve. 1. Android OS boots up. Home screen is launched. 2. User clicks on An Application (any app). 3. A text box appears asking, would you like to run this App as Super User? I cant figure out, where

Re: [android-developers] Re: Error inflating class android.widget.TextView

2012-03-05 Thread jhonny Villarroel
te faltan permisos -- 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.com For

[android-developers] Dynamically-Drawn, Clickable Map Overlay?

2012-03-05 Thread PJ
Hi, I'm trying to write an Android app that will allow a user to search for a generic destination (e.g., gas station) and be presented with up to ~5 nearby locations to choose from. The screen results would display the user location in the center, and possible destination options would be

Re: [android-developers] API's use

2012-03-05 Thread Ankita Kashyap
Okkeis! You can check this link for code example to use API key. http://stackoverflow.com/questions/6540917/using-http-request-in-node-js-while-passing-an-api-key BR, Ankita On Mon, Mar 5, 2012 at 2:48 PM, megha agrawal megha14.2...@gmail.comwrote: Hi Ankita Thanks for reply!! Actually I

Re: [android-developers] API's use

2012-03-05 Thread Ankita Kashyap
check comments too! On Mon, Mar 5, 2012 at 3:00 PM, Ankita Kashyap ankita.kashyap@gmail.com wrote: Okkeis! You can check this link for code example to use API key. http://stackoverflow.com/questions/6540917/using-http-request-in-node-js-while-passing-an-api-key BR, Ankita On Mon,

Re: [android-developers] API's use

2012-03-05 Thread Ankita Kashyap
Also, this link for further understanding http://www.vogella.de/articles/AndroidJSON/article.html Basically simple request-response via Http connection etc. In a hurry, else would have explained in a better manner. Hope it helps. BR, Ankita On Mon, Mar 5, 2012 at 3:00 PM, Ankita Kashyap

Re: [android-developers] Re: API's use

2012-03-05 Thread megha agrawal
I have already got key from Zomato but don't know how to use it in code?? I have never developed Android app before, this is my first tym, so need to understand from scratch. On Mon, Mar 5, 2012 at 2:40 PM, David zooklu...@gmail.com wrote: Hi, http://www.zomato.com/api Sign up for an API

Re: [android-developers] API's use

2012-03-05 Thread megha agrawal
Thanks Ankita, i will try to implement using same..:-) On Mon, Mar 5, 2012 at 3:02 PM, Ankita Kashyap ankita.kashyap@gmail.com wrote: Also, this link for further understanding http://www.vogella.de/articles/AndroidJSON/article.html Basically simple request-response via Http connection

Re: [android-developers] How to record a voice and match the recorded voice with the mp3 file that have in raw folder

2012-03-05 Thread David Olsson
Hi, Can't say that voice recognition is easy but there are some examples out there. Of course it depends on your skill level and knowledge. Take a look at those. http://stackoverflow.com/questions/609528/java-voice-recognition Regards, D On Mon, Mar 5, 2012 at 8:07 AM, Yogeshkumar Tiwari

[android-developers] how to convert word to pdf in android?

2012-03-05 Thread Mulsaniya Bhadresh
Hello,Please anyone have any idea how to convert word to pdf in android.? Is there any way then please give me reply ASAP.. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Selling an app: Sales Tax and Tax Returns?

2012-03-05 Thread James Black
You will need to ask an accountant but if you make more than a threshold I expect you will need to file your own taxes, but I am not an accountant. On Mar 5, 2012 4:24 AM, bigluc biglu...@gmail.com wrote: I am a young developer (under 18), and am wondering about selling an app, but wonder about

[android-developers]

2012-03-05 Thread teja divya
how to change the button images according to the state of the button that is button pressed,button focussed ??? -- ..divyateja -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Crashed service restarted by system doesn't call onStart

2012-03-05 Thread Alexey Zakharov
So what is the right solution. Start service from onCreate? On Wednesday, April 1, 2009 2:38:15 AM UTC+7, Dianne Hackborn wrote: That is working as intended. onStart() is called each time someone calls startService(); if nobody has called startService() since your last onStart(), then

[android-developers] Is support for USB 3.0 there in Android .

2012-03-05 Thread tarun sablok
Just want some pointers is there support for data transfer through USB 3.0 in the devices which are coming with Android 4.0 or any other version. -- 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] Is support for USB 3.0 there in Android .

2012-03-05 Thread tarun sablok
Just want some pointers is there support for data transfer through USB 3.0 in the devices which are coming with Android 4.0 or any other version. -- 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] Image on external storage

2012-03-05 Thread bt
Hi, I would like to display an image from external storage which is 72x72 px. My device has high density. The image view height and width are wrap_content. I got different results if I load the image or use an URL. If I use an URL like this then the result will be about 48x48px.

Re: [android-developers] API's use

2012-03-05 Thread sourabh sahu
You can outsource it to me,but it will be charged :) Thanks , Sourabh On Mon, Mar 5, 2012 at 3:14 PM, megha agrawal megha14.2...@gmail.comwrote: Thanks Ankita, i will try to implement using same..:-) On Mon, Mar 5, 2012 at 3:02 PM, Ankita Kashyap ankita.kashyap@gmail.com wrote:

[android-developers] WebView Java script function

2012-03-05 Thread Amit
Hi, I am exposing java script function from my webview. This Java script function is called by webcore thread on-page-loading inside webview. Is there any way to retrieve current loaded url inside called Java script function? Thanks, -- You received this message because you are subscribed

Re: [android-developers] WebView Java script function

2012-03-05 Thread ANKUR GOEL
chk this one, will u in getting the url client = new WebViewClient() { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { return true; } }; On Mon, Mar 5, 2012 at 6:03 PM, Amit agrawalamit2...@gmail.com

Re: [android-developers] Need 2 Show Multiple Progress Dialog in same activity.

2012-03-05 Thread ANKUR GOEL
just put progress bar before imageView in xml and hide the progress bar as the image downloads ProgressBar progressBar = (ProgressBar) layout.findViewById(R.id.progressbar_default); if(bitmap != null){ imageView.setImageBitmap(bitmap);

Re: [android-developers] where to add code prior to any app execution?

2012-03-05 Thread Mark Murphy
This list is for developing applications with the Android SDK. Questions regarding ActivityManager and zygote belong elsewhere, perhaps on a list hosted at http://source.android.com. On Sun, Mar 4, 2012 at 6:03 PM, andromeda- salman13...@googlemail.com wrote: I am new to android, any

[android-developers] how to display progress bar inside the imageview

2012-03-05 Thread ravi .
I would like to show progress bar (in form of rotating circle or something similar) when loading image from remote location. I don't want standard ProgressBar that gets shown in the middle of the screen. I would like to have it in the middle of the imageView (or Layout that holds ImageView). Is

[android-developers] GalleryView issue

2012-03-05 Thread Raju Gaddam
Hi Iam trying to get Images from server that images is adding to Gallery View in LandScape mode. Here Gallery View is displaying but images are not showing in Gallery View Please any help for me regards Raju -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Magic-8-Ball in phonegap

2012-03-05 Thread Tushar Lal
I wish to design Magic-8-Ball in android using phonegap, but I have no idea where to begin. Can some one please guide on how to develop or where to start looking on how to create the app. Regards: Tushar -- You received this message because you are subscribed to the Google Groups Android

[android-developers] AutoCompleteTextView doesn't show dictionary suggestions

2012-03-05 Thread kaciula
I have a custom AutoCompleteTextView where the user can freely enter text and whenever the user writes @ I show a dropdown with suggestions of custom usernames. Unfortunately, I also need to show the dictionary word suggestions above the keyboard and, for some reason,

Re: [android-developers] Magic-8-Ball in phonegap

2012-03-05 Thread Mark Murphy
I would start with http://phonegap.com/ and http://groups.google.com/group/phonegap, since they are focused on PhoneGap, and this list is not. On Mon, Mar 5, 2012 at 8:14 AM, Tushar Lal tush...@gmail.com wrote: I wish to design Magic-8-Ball in android using phonegap, but I have no idea where to

[android-developers] Re: Need 2 Show Multiple Progress Dialog in same activity.

2012-03-05 Thread Seshu
Hi, I am using lazy list example i.e., image loader class. but the progress bar is not showing.. package com.self import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.InputStream; import

Re: [android-developers] Magic-8-Ball in phonegap

2012-03-05 Thread ANKUR GOEL
www.phonegap.com On Mon, Mar 5, 2012 at 6:44 PM, Tushar Lal tush...@gmail.com wrote: I wish to design Magic-8-Ball in android using phonegap, but I have no idea where to begin. Can some one please guide on how to develop or where to start looking on how to create the app. Regards: Tushar

[android-developers] Twitter Error

2012-03-05 Thread aru padam
Hi all I am developing an app using twitter integration. The following error can obtained in some devices 03-20 01:50:21.489: ERROR/ com.experion.minigolf.utils.MGOAuthRequestTokenTask(2366): Error during OAUth retrieve request token 03-20 01:50:21.489: ERROR/

[android-developers] Re: Performance issue executing native code on ICS

2012-03-05 Thread Michael
These are results of 'top' running the (unmodified) CameraPreview of the ApiDemos sample on two Nexus S devices, one with Gingerbread, the other one with Ice Cream Sandwich: 1) Nexus S, Gingerbread, Build Target: Android 2.3.3 User 1%, System 6%, IOW 0%, IRQ 0% User 6 + Nice 0 + Sys 21 + Idle

[android-developers] Re: Any way to change one color to another on a bitmap?

2012-03-05 Thread darrinps
Yes. That's what I ended up going with and it is a LOT faster. Probably fast enough for what I need. On Mar 4, 6:32 pm, gjs garyjamessi...@gmail.com wrote: Hi, Did you try the array version of setPixels() rather than the single pixel method ? Array version is much faster. Regards On Mar

[android-developers] Re: Performance issue executing native code on ICS

2012-03-05 Thread Michael
The corresponding bug report is filed here: https://code.google.com/p/android/issues/detail?id=26446 Michael On Monday, March 5, 2012 3:22:24 PM UTC+1, Michael wrote: These are results of 'top' running the (unmodified) CameraPreview of the ApiDemos sample on two Nexus S devices, one with

[android-developers] Re: bootup app invoking app has error - No Activity found to handle Intent

2012-03-05 Thread Thomas
The error was caused by the HelloWorld app's manifest not having the correct default linkage: Here's the calling app followed by the corrected helloworld manifest. There had to be intent-filter action android:name=com.thomas.needham.HELLOWORLD /

[android-developers] Re: sqlite database on phone creash

2012-03-05 Thread Chris Stratton
On Monday, March 5, 2012 4:20:12 AM UTC-5, Jagruti Sangani wrote: i have use the sqlite databse for storing and retrive the value during application run.It is work perfectly when i run my apllication on emulator but when i run my application on phone then when try to get data from database

[android-developers] Re: Any way to change one color to another on a bitmap?

2012-03-05 Thread Nadeem Hasan
How about: d.setColorFilter( color, PorterDuff.Mode.SRC_ATOP ); * * -- 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] How To: Run Multiple Apks in Single Process

2012-03-05 Thread TreKing
On Fri, Mar 2, 2012 at 9:17 AM, AnimeshKBhadra animesh.bhadr...@gmail.comwrote: I want to run 2 Apks in a Single process, so that the sharing of data is possible between these two Apks. As i know in Android each Apks create there own process. Please point me to any literature if this already

Re: [android-developers] videos uploading in android

2012-03-05 Thread TreKing
On Sun, Mar 4, 2012 at 10:39 AM, ashish bhulani ashishbhul...@gmail.comwrote: Is there any site to provide this functionality?? Perhaps, but that has nothing to do with Android. You just need a server to host and serve your videos.

Re: [android-developers] How to Synchronize data on cloud?

2012-03-05 Thread TreKing
On Sun, Mar 4, 2012 at 7:51 AM, sanarmal armalsan...@gmail.com wrote: Hey, i am creating one application which is use for synchronize the contact,image,video on cloud. but i didn't find any information. pls provide me some tutorial or code. Start by searching for sync in the documentation.

[android-developers] PhoneWindowManager.java

2012-03-05 Thread satahippy
hi! how can i change code of PhoneWindowManager.java and use it 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

Re: [android-developers] PhoneWindowManager.java

2012-03-05 Thread Mark Murphy
Step #1: Visit http://source.android.com Step #2: Read all the information there about downloading the source code and making your own firmware Step #3: Visit the Community tab on that site and ask further questions of a relevant Google Group there On Mon, Mar 5, 2012 at 11:30 AM, satahippy

[android-developers] Re: PhoneWindowManager.java

2012-03-05 Thread satahippy
hmm, what is the Community tab and relevant Google Group? -- 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] App suspended

2012-03-05 Thread TreKing
On Thu, Mar 1, 2012 at 7:03 AM, Lord0 lawrence.s.tier...@gmail.com wrote: So, how do I modify the app and/description if I cannot access it via the Developer Console? Wrong forum: http://support.google.com/androidmarket/?hl=en

[android-developers] Re: PhoneWindowManager.java

2012-03-05 Thread satahippy
hmm, what is the Community tab and relevant Google Group? -- 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] Problem with drawing text in scaled Canvas on Android 4.0

2012-03-05 Thread Romain Guy
The Canvas scale does not apply to the font size, it applies to the vector shapes generated from the original font size. You simply cannot this: p.setTextSize(fontSize * scale) result = p.measureText(...) You must instead do this: p.setTextSize(fontSize) result = scale * p.measureText(...) On

Re: [android-developers] My country is not listed as an available billing address when trying to register as a developer

2012-03-05 Thread TreKing
On Sat, Mar 3, 2012 at 8:45 PM, penkogro...@kms-e.com pemi...@gmail.comwrote: So, the question is - provided that I am eligible to publish FREE applications, what's the legal way to enter Android Market? Wrong forum: http://support.google.com/androidmarket/?hl=en

[android-developers] Re: power button

2012-03-05 Thread zasaz
big thanx! -- 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.com For more

Re: [android-developers] ayuda

2012-03-05 Thread TreKing
2012/3/4 Pablo Lopez mlopez.l...@gmail.com buenas buenas tengo un xperia x8 y se quedo muerto 1 - Tienes que hablar Ingles aquí si quieres ayuda. 2 - Tu problema no tiene nada que ver con este grupo. Llama tu compañía telefónica, la cual manufacturo tu teléfono, o la tienda donde lo compraste.

Re: [android-developers] android spinner help

2012-03-05 Thread TreKing
On Thu, Mar 1, 2012 at 8:05 AM, Kevin Haines khaines...@gmail.com wrote: I just don't know how to configure the button. Why not? Can you be a bit more specific? What have you tried? What doesn't work?

Re: [android-developers] layout configuration qualifiers

2012-03-05 Thread TreKing
On Thu, Mar 1, 2012 at 2:53 PM, harris...@roadrunner.com harris...@roadrunner.com wrote: But when I run the app on the emulator using different skins, they all seem to use the normal layout file. What do mean using different skins?

Re: [android-developers] Required Help to create activity

2012-03-05 Thread TreKing
On Sat, Mar 3, 2012 at 10:49 PM, Alok alokyesha...@gmail.com wrote: Now can any one tell me how to add a new activity here What does that mean? - TreKing

[android-developers] Re: android spinner help

2012-03-05 Thread Kevin Haines
i am very new to android so i havent tried much. this is what i have so far. ignore the extra imports. i have been experimenting a bit with this class. i need it to be so that when i click on one of the options in the spinner i can then click on a button below the spinner that will start

Re: [android-developers] Not able to display map in android app.

2012-03-05 Thread ashish keshri
Hi friends, Thanks for your reply, its a ,map key issue. now i am able to display map. using release key. On Mon, Mar 5, 2012 at 11:35 AM, rambabu mareedu rambabu.mare...@gmail.comwrote: hi here i'm giving some links ,,,to get google api key

Re: [android-developers] Re: android spinner help

2012-03-05 Thread TreKing
On Mon, Mar 5, 2012 at 11:39 AM, Kevin Haines khaines...@gmail.com wrote: i am very new to android so i havent tried much [SNIP] ... i cant figure out how to configure the button. i know i need if statements but im confused how to work them with this project. I still don't know what you mean

Re: [android-developers] Using setContentView(viewList) in current Activity

2012-03-05 Thread TreKing
On Thu, Mar 1, 2012 at 11:16 AM, Shani tamirno...@gmail.com wrote: e.g. Like the search contacts dispatch a new window with the multiple possibilities and then go back to the 1'st Activity That's not very clear. Does anyone know how you do it ? Do what?

Re: [android-developers] In ImageSwicher/ViewFlipper ImageView is blurry when i set zoom Animation?

2012-03-05 Thread hooman os
Try starting your animation in onwindowfocused() in your activity. On 4 Mar 2012 18:50, prat...@mobikasa.com prat...@mobikasa.com wrote: In my App i am showing slideshow of images preloaded on Drawable. In Slideshow i used all ImageSwicher/ViewFlipper/ViewSwicher. In slideshow every image have

[android-developers] import-ant

2012-03-05 Thread bob
What's the difference between a project that is ready to be imported and one that is set up for Create project from existing source? If you get a project, how do you know which import technique to use? -- You received this message because you are subscribed to the Google Groups Android

Re: Go To ( http://adf.ly/20PrE )-)-) Re: [android-developers] Re: Losing memory on tablet but not phone

2012-03-05 Thread yinoryan
Thanks for the link to this documentation. It seems to explain where those extra 64k bytes are coming from: The buffers returned by this method typically have somewhat higher allocation and deallocation costs than non-direct buffers. Unfortunately Android = 1.6 forces the use of allocateDirect

Re: [android-developers] Dynamically-Drawn, Clickable Map Overlay?

2012-03-05 Thread TreKing
On Sun, Mar 4, 2012 at 8:35 PM, PJ pdi...@umbc.edu wrote: Any thoughts on how to best implement this? The only information I've found on overlays uses static files (Most overlays seem to be just .PNG files for markers; one example had a route that was drawn from an XML file). I'd need to

Re: [android-developers] how to convert word to pdf in android?

2012-03-05 Thread TreKing
On Mon, Mar 5, 2012 at 4:18 AM, Mulsaniya Bhadresh bhadresh.ha...@gmail.com wrote: Hello,Please anyone have any idea how to convert word to pdf in android.? Search this group - questions on PDF come up every other day.

Re: [android-developers]

2012-03-05 Thread TreKing
On Mon, Mar 5, 2012 at 4:42 AM, teja divya loud.te...@gmail.com wrote: how to change the button images according to the state of the button that is button pressed,button focussed ??? http://developer.android.com/reference/android/graphics/drawable/StateListDrawable.html

[android-developers] Looking for Android developers

2012-03-05 Thread CEO
All, I am looking for experienced Android developers to help with some (very interesting) gigs/opportunities. Email me to enrique at chaoticmoon.com... ceo -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] how to display progress bar inside the imageview

2012-03-05 Thread TreKing
On Mon, Mar 5, 2012 at 7:03 AM, ravi . ravikanth...@gmail.com wrote: I would like to show progress bar (in form of rotating circle or something similar) when loading image from remote location. http://developer.android.com/reference/android/widget/ProgressBar.html

Re: [android-developers] GalleryView issue

2012-03-05 Thread TreKing
On Mon, Mar 5, 2012 at 7:09 AM, Raju Gaddam gaddam967...@gmail.com wrote: Iam trying to get Images from server that images is adding to Gallery View in LandScape mode. Here Gallery View is displaying but images are not showing in Gallery View Please any help for me

[android-developers] My NFC reader detecting as a USB Keyborad ;)

2012-03-05 Thread Srinivas Nainala
Dear All, I am facing typical problem with my NFC reader. Steps:- I have connected NFC reader to the Acer Iconia USB slot. I try to enter some data using keyboard on the fields, but I am unable to find out the keyboard on the screen. In the log file it detecting as USB

[android-developers] Re: My NFC reader detecting as a USB Keyborad ;)

2012-03-05 Thread Srinivas Nainala
Please look into the below line:- New device: id=15, fd=221, path='/dev/input/event5', name='RFIDeas USB Keyboard', classes=0x8003, configuration='', keyLayout='/system/ usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/ Generic.kcm', builtinKeyboard=false While connecting NFC

[android-developers] Paid Apps: Legal Stuff and Taxes

2012-03-05 Thread bigluc
Can someone explain to me the nessasary things I need to sell and app? Besides an app and a dev account, do I need a buissness? Also do I need to file taxes? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Paid Apps: Legal Stuff and Taxes

2012-03-05 Thread Mark Murphy
This list is for developing applications with the Android SDK. Please contact qualified legal counsel for legal advice, for whatever country you happen to reside in. On Mon, Mar 5, 2012 at 6:48 PM, bigluc biglu...@gmail.com wrote: Can someone explain to me the nessasary things I need to sell and

[android-developers] v4 compatibility support for SimpleCursorTreeAdapter

2012-03-05 Thread OldSkoolMark
I note that unlike SimpleCursorAdapter, SimpleCursorTreeAdapter doesn't have static library support defined in v4. Does this mean that I should use AsyncQueryHandler or AsyncTask instead of a CursorLoader? Or should I use a different adapter for an ExpandableListView if I am using the v4

Re: [android-developers] Adjust Screen Size When Soft Keyboard Shown

2012-03-05 Thread Matt Clark
Ahhh, i always wrap everything in scroll view, but did not know to set this property. 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

[android-developers] AnalogClock

2012-03-05 Thread Bazza
I have searched high and low and found AnalogClock in SDK but no reference to clock_hours and clock_minutes but I see these come up in xml layout in example on Eclipse. eg android:clock_hours. Where are these references located? Any help appreciated. -- You received this message because you

[android-developers] MediaController working sample copy?

2012-03-05 Thread IS SOA
i did search on google devlopers site and they have mediaplayer code but i am looking for mediacontroller can anybody points 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-developers] Re: MediaController.MediaPlayerControl for audio

2012-03-05 Thread IS SOA
i am on the same boat.. let me know if you find anything. On Tuesday, December 7, 2010 11:25:05 AM UTC-5, manivel t wrote: I have to use MediaController.MediaPlayerControl in order to display a MediaController at the bottom of my Custom View but I can't get it to work. Please help me.. --

[android-developers] Re: MediaController questions + problems + strange behaviour

2012-03-05 Thread IS SOA
i am having the same issue, i am using MediaController.MediaPlayerControl and its hang after play for about few minutes, is that what you having too? On Friday, July 2, 2010 9:10:34 AM UTC-4, MarcoAndroid wrote: Hi, I've been starting to use the MediaController in combination with the

[android-developers] 2 gig apk extensions

2012-03-05 Thread Fred Grott
Just a quick set of questions So I assume that with the android tools r11 that we have another library project definition in which we store the extensions(obbs) and than the build.xml process will than zip that up properly. Or is it a slightly different set of steps in the build process? BTW,

Re: [android-developers] MediaController working sample copy?

2012-03-05 Thread TreKing
On Mon, Mar 5, 2012 at 8:31 PM, IS SOA isso...@gmail.com wrote: i did search on google devlopers site and they have mediaplayer code but i am looking for mediacontroller can anybody points me please? http://lmgtfy.com/?q=android+mediacontroller+example

[android-developers] testing ACTION_CANCEL

2012-03-05 Thread Omri
Hey All, Anybody know what to do to invoke an ACTION_CANCEL event for testing purposes? My app is an OpenGL ES JNI based app using GLSurfaceView. Any thoughts? Thanks, Omri -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Promoção

2012-03-05 Thread Denis Silva
QUANTIDADE DE E-MAILS DISPONÍVEL PARA DIVULGAR 30 MIL E-MAILS POR DIA - 55 REAIS 70 MIL E-MAILS POR DIA - 75 REAIS 100 MIL E-MAILS POR DIA - 95 REAIS 500 MIL E-MAILS POR DIA - 150 REAIS 1 MILHÃO DE E-MAILS POR DIA - 250 REAIS QUEM SOMOS? Somos um grupo de trabalho que desenvolve soluções

[android-developers] Same java package in multiple applications

2012-03-05 Thread Omri
Hey All, So I'm developing a mixed Java/C++ JNI based app that will have a full (paid) and lite (free) version. 99% of the code will be exactly the same. Each version of the app will have it's own java package com.mycompany.myfullapp and com.mycompany.myliteapp with it's own Activity. But, both

Re: [android-developers] MediaController working sample copy?

2012-03-05 Thread IS SOA
wow mate that exactly what i needed, a genius to help me out, thanks for the advice mate but i already passed by that door ... On Monday, March 5, 2012 9:49:23 PM UTC-5, TreKing wrote: On Mon, Mar 5, 2012 at 8:31 PM, IS SOA wrote: i did search on google devlopers site and they have

[android-developers] Mutli touch with multi buttons

2012-03-05 Thread android developer
Hi all, how to Touch 3 buttons at the same time? I need your help regarding Multi touch with the help of multi buttons on gridview. Please suggest me on this issue. Thanks you all. -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Problem with drawing text in scaled Canvas on Android 4.0

2012-03-05 Thread Zsolt Vasvari
And finally it is working as I expected on Android below 4.0. Why it is not working on 4.0? What is the difference? The font used, for one... -- 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: layout configuration qualifiers

2012-03-05 Thread moktarul anam
Hi harr..., can u tell me what is ur android version? because layout, layout-large.. etc will support from 2.3. below 2.3 version ( 2.2, 2.1..) does not support this Moktarul On Friday, 2 March 2012 02:23:36 UTC+5:30, harr...@roadrunner.com wrote: I have an app that uses configuration

[android-developers] Re: sqlite database on phone creash

2012-03-05 Thread Jagruti Sangani
Hello, But when i run the application on emulator then there is no error so how can i know ..? On Monday, March 5, 2012 9:23:19 PM UTC+5:30, Chris Stratton wrote: On Monday, March 5, 2012 4:20:12 AM UTC-5, Jagruti Sangani wrote: i have use the sqlite databse for storing and retrive the value

[android-developers] Re: How To: Run Multiple Apks in Single Process

2012-03-05 Thread moktarul anam
Hi animesh kumar bhadra, * * *in android each application runs in separate process. for data sharing u look in to service and contentProvider * * * *Moktarul * * * * * On Friday, 2 March 2012 20:47:32 UTC+5:30, animesh kumar bhadra wrote: Hi, I want to run 2 Apks in a Single process, so

[android-developers] Re: sqlite database on phone creash

2012-03-05 Thread moktarul anam
Hi Jagruti Sangani, *There is some problem in ur program. one problem may be ur not closing database after fetching data from database. * *better share ur database code * * * *Moktarul anam * * * On Monday, 5 March 2012 14:50:12 UTC+5:30, Jagruti Sangani wrote: hello, i have use the sqlite

[android-developers] Re: WebView Java script function

2012-03-05 Thread moktarul anam
Hi Amit. in html header script function onload(){ var url = window.loacation; alert(url); Android.currentUrl(url); } /script body onload=onload() Moktarul On Monday, 5 March 2012 18:03:30 UTC+5:30, Amit wrote: Hi, I am exposing java script function from my webview. This Java

[android-developers] Call Back

2012-03-05 Thread Jagruti Sangani
hello, I want to record the voice and store in one file on device.When the perticular phone number will call and if it is call received by other party then instead of talking i want to play that recorded file.So please can anybody know how to play that file when call recived. -- You received

[android-developers] Re: GalleryView issue

2012-03-05 Thread moktarul anam
Hi Raju, here u r fetching images form server better do it in android async task. and after that change to bitmap. and add this to view. there is some 3rd party apps also available, there u hav to provide Utils.setImage(view, url, caching time) ; Enjoy Moktarul Anam On Monday, 5 March

  1   2   >