[android-developers] page navigation

2012-03-05 Thread rajesh
Hi all, Can any one help me to do the page navigation step by step?. -- 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] HOw to extract only number

2012-03-05 Thread Narendra Singh Rathore
> > can anybody know how to do successfully pass the number. Hey Jagruti, I guess I know. Try this, I m sure this will help you out. String s=txt.getText().toString(); String lines[]=s.split("\\r?\\ "); String str=lines[0]; Regards, -- You received this message because you are subscribed

Re: [android-developers] How to show a single country map rather then whole world map

2012-03-05 Thread Yaron Reinharts
Hi, See http://code.google.com/android/add-ons/google-apis/reference/com/google/android/maps/MapController.html Check out setCenter and setZoom. Hope this helps /Yaron -- Yaron Reinharts Smart Drive Applications http://www.poncho.co.il/gateaway.php https://market.android.com/details?id=com.po

[android-developers] Database Problem

2012-03-05 Thread abhijeet tomar
Hello Developers, I got exception 'close() was never explicitly called on database / pkg/ db ' and i am not closed the database...where is the problem if u know about that pls comment on that... Thanks in Advance... -- You received this message because you are subscribed to the Google Groups "

[android-developers] How to show a single country map rather then whole world map

2012-03-05 Thread Harpreet Singh
Hi Friends, I am using Google Map Api, it showing the whole world map. I need to display map of individual country e.g. just of "Australia". Is it possible that only map of Australia is shown and rest neighboring countries will not be displayed. Please help. Thanks in advance, Harpreet. -- You

[android-developers] Re: WebView Java script function

2012-03-05 Thread Amit
I think you code snippet has currentUrl() as JS exposed function. Is there anyway to get urk infromation from android API. Android.currentUrl(url), caller can pass anystring. It is not necessary to be same url as it being loaded from. But i think, if android API provides this infromation, it wi

Re: [android-developers] WebView Java script function

2012-03-05 Thread Amit
shouldOverrideUrlLoading() is called in webview thread and androdi calls JS function webviewcorethread. there is no guarantee that shouldOverrideUrlLoading() is called prior to JS call even though JS function is called on onload(). Infact in Android3.0/3.1, shouldOverrideUrlLoading() is neve

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

2012-03-05 Thread Temp Test
Hi Shani, >From the exception it looks like you are trying to set the same list view object more than once. Verify when it happens. may be in onresume when you come back. On Tue, Mar 6, 2012 at 10:50 AM, moktarul anam wrote: > Hi Shani, > > its not clear. In setContentview u can add only layou

[android-developers] HOw to extract only number

2012-03-05 Thread Jagruti Sangani
Hello, I have textbox in that some time i will enter the onlu number like 96350254 or 5002 those are not in fix length.and sometimes if select from contact then in text box number will be with the name like "5002 jagruti".when i press the button then i want to pass only the number to the other

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

2012-03-05 Thread moktarul anam
Hi Shani, its not clear. In setContentview u can add only layout name. setContentView(R.layout.main); moktarul On Thursday, 1 March 2012 22:46:51 UTC+5:30, Shani wrote: > > Hi, > > i'm new to android and trying to dispatch a ViewList from a current > Activity. (Android 2.2) . I'm getting t

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

2012-03-05 Thread Jagruti Sangani
hello below is my code of database that fetch value from database and fill in listview. when we click on tab then screen will crash the application. path = "/data/data/" + mContext.getApplicationContext().getPackageName() + "/databases/" + "call_history.db

[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 201

[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 thi

[android-developers] Re: WebView Java script function

2012-03-05 Thread moktarul anam
Hi Amit. in html header function onload(){ var url = window.loacation; alert(url); Android.currentUrl(url); } 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 script > function is called by w

[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 sqlit

[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 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

[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 q

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

[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 Devel

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] 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

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 de

[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 th

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

2012-03-05 Thread TreKing
On Mon, Mar 5, 2012 at 8:31 PM, IS SOA 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] 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,

[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] 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] 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

[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 are

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] 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 compatibil

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 wrote: > Can someone explain to me the nessasary things I need to sell and app? > Besides an

[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 ema

[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 r

[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 Keyboard.

Re: [android-developers] GalleryView issue

2012-03-05 Thread TreKing
On Mon, Mar 5, 2012 at 7:09 AM, Raju Gaddam 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 > http://www.catb.org/~esr/faqs/smart-quest

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 . 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 ---

[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 e

Re: [android-developers]

2012-03-05 Thread TreKing
On Mon, Mar 5, 2012 at 4:42 AM, teja divya 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 ---

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 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] Dynamically-Drawn, Clickable Map Overlay?

2012-03-05 Thread TreKing
On Sun, Mar 4, 2012 at 8:35 PM, PJ 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 calculate the ar

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 allocateDire

[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: [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" 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 it's own animat

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

2012-03-05 Thread TreKing
On Thu, Mar 1, 2012 at 11:16 AM, Shani 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] Re: android spinner help

2012-03-05 Thread TreKing
On Mon, Mar 5, 2012 at 11:39 AM, Kevin Haines 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 by "configure th

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 wrote: > >>> >> hi here i'm giving some links ,,,to get google api key >> > http://code.google.com/android/add-ons/google-apis/mapkey.html >

[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 downloadin

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

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

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] android spinner help

2012-03-05 Thread TreKing
On Thu, Mar 1, 2012 at 8:05 AM, Kevin Haines 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? - TreKing

Re: [android-developers] ayuda

2012-03-05 Thread TreKing
2012/3/4 Pablo Lopez > 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. ---

[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 mor

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 wrote: > 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 --

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

[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 android-dev

Re: [android-developers] App suspended

2012-03-05 Thread TreKing
On Thu, Mar 1, 2012 at 7:03 AM, Lord0 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 android-dev

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 wro

[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] How to Synchronize data on cloud?

2012-03-05 Thread TreKing
On Sun, Mar 4, 2012 at 7:51 AM, sanarmal 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.

Re: [android-developers] videos uploading in android

2012-03-05 Thread TreKing
On Sun, Mar 4, 2012 at 10:39 AM, ashish bhulani wrote: > 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: Run Multiple Apks in Single Process

2012-03-05 Thread TreKing
On Fri, Mar 2, 2012 at 9:17 AM, AnimeshKBhadra wrote: > 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 discussed. > Search

[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 andr

[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 data

[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 as well as .LAUNCHER _

[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 G

[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 wrote: > Hi, > > Did you try the array version of setPixels() rather than the single > pixel method ? > Array version is much faster. > > Regards > > On Mar 3, 6:56 am, darr

[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 28

[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/ com.experion.minigolf.utils.

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 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 > > -- > You

[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 java.io.OutputSt

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 wrote: > I wish to design Magic-8-Ball in android using phonegap, but I have no > idea where to begin. Can some

[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, AutoCompleteTextViewdoes

[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 Develo

[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] 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 th

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- wrote: > I am new to android, any help/suggestion would be highly appre

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); imageView.setVisi

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 wrote: > Hi, > > I am exposi

[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] 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 wrote: > 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

[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.

[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

[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

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 o

[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 android-developers@goog

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" wrote: > I am a young developer (under 18), and am wondering about selling an app, > but wonder about taxes. I live

[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 android-developers@goo

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 < yoge

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 wrote: > 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

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 wrote: > Hi, > > http://www.zomato.com/api > Sign up for an API key? Read "how it

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 wrote:

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 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, Mar 5, 2012 at 2:4

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 wrote: > Hi Ankita > > Thanks for reply!! > > Actually I have never worked

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 mo

[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 indica

[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 wrote: > 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

[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

  1   2   >