[android-developers] block application installation by password

2012-01-03 Thread Suganya
User is downloading applications from Android Market. My task is after downloading the application if the user tries to install the application (i.e if user clicks the install button) means a popup should open. It should ask for password. If the password is correctthe user is allowed to install

[android-developers] Re: need some code

2012-01-03 Thread skink
chowdary nani wrote: Hi All, I am writing code for text rotation i need text to be rotated for 90 degrees when i click on button What text? Text of the button being clicjed? How to solve above scenario using call back methods in ANDROID. What callbacks? pskink -- You received this

Re: [android-developers] need help on rotating text

2012-01-03 Thread chowdary nani
Hi, Thank you Chandara shekar your link has helped me a lot Thanks for your help, Thanks for replay Thanks Naveen. On Tue, Jan 3, 2012 at 12:29 PM, Chandra Sekhar chandra4...@gmail.comwrote: On Tue, Jan 3, 2012 at 9:43 AM, chowdary nani naveenneeli...@gmail.comwrote: Hi All, I need help

[android-developers] Re: block application installation by password

2012-01-03 Thread srihari babu
Ur at wrong place. At Application level it is not possible. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] Re: block application installation by password

2012-01-03 Thread suganya lakshmanan
den how can i achieve this? Any idea abt this ..where can i post this..thanks in advance.. -- 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] Plz Help on Sending Google Map Location in Email

2012-01-03 Thread Dhaval Varia
Dear Through GPS I have found Latitude and Longitude. *Now I wanted to do following things:* *1. Send Location Link in Email.* * By clicking this , receiving party should directly move to that location on Google map* * * *2. [If possible] Send this link in sms.** * * * *

Re: [android-developers] Re: block application installation by password

2012-01-03 Thread srihari babu
You probably need to change android framework. This is possible with custom ROM image. So, get android source code. and start changing frame work. Regards. -- 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] Re: block application installation by password

2012-01-03 Thread Kristopher Micinski
On Tue, Jan 3, 2012 at 4:36 AM, suganya lakshmanan suganyalakshmana...@gmail.com wrote: den how can i achieve this? Any idea abt this ..where can i post this..thanks in advance.. Right, the only way to do this is to install custom firmware. Changing the firmware is hard, and not worth it for

[android-developers] Androin 2.2 calendar source code

2012-01-03 Thread android developer
HI to all! I have to create Calendar in v2.2 . so can any1 send me sample code? -- 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

Re: [android-developers] Re: Stop service before the work completes

2012-01-03 Thread Kristopher Micinski
You're thinking about this the wrong way. In the Android framework, things don't just die, stopping a service does not mean sending it a SIGKILL. Instead, I would suspect that you should create an onStop in your service, and stop your processing there. However if you're doing some long running

Re: [android-developers] Re: need some code

2012-01-03 Thread Sawan Darekar
use animation... On Tue, Jan 3, 2012 at 2:27 PM, skink psk...@gmail.com wrote: chowdary nani wrote: Hi All, I am writing code for text rotation i need text to be rotated for 90 degrees when i click on button What text? Text of the button being clicjed? How to solve above

Re: [android-developers] Re: block application installation by password

2012-01-03 Thread Narendra Bagade
try to find where apk is stored after downloaded from market.and try to catch your application icon click event.customize it according to your requirement. On Tue, Jan 3, 2012 at 4:01 PM, Kristopher Micinski krismicin...@gmail.comwrote: On Tue, Jan 3, 2012 at 4:36 AM, suganya lakshmanan

[android-developers] voice recognition

2012-01-03 Thread Narendra Bagade
Hi All, I need a help regarding voice recognition voice biometric. Is any third party library is available for the same. pls. suggest me any sample application. -- Regards, Narendra . -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Re: need some code

2012-01-03 Thread skink
Sawan Darekar wrote: use animation... Animation as its name suggests is used for making dynamic animations not static stuff So animations are not that good solution - its better to take a look into Canvas class and its rotate() method pskink -- You received this message because you are

[android-developers] rotate GLSurfaceView

2012-01-03 Thread stanley
when i use GLSurfaceView.setRotationX(30.0f), it does not work.why? but setTranslationX() works. thank u! -- 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

[android-developers] Re: How to create Widgets in android?

2012-01-03 Thread Oli Wright
This seems awfully familiar. Haven't you taken anything on board from your other posts? Read this: http://www.catb.org/~esr/faqs/smart-questions.html Don't just skim it, read it. Read it again. Realise how it relates to what you have asked. Take the mitigating actions suggested within that

[android-developers] Re: ACRA - a little humor

2012-01-03 Thread Oli Wright
Hardware crash? Catastrophic? -- 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] Androin 2.2 calendar source code

2012-01-03 Thread Yogeshkumar Tiwari
Hi, i have a calender source code that i have developed but i cant give you because of confidentials issues. But i can help you in that. if you want more helps, mail me i will help you to come out with your problems that you facing during developments. with regards: Yogesh Tiwari -- You

Re: [android-developers] Re: block application installation by password

2012-01-03 Thread Kristopher Micinski
On Tue, Jan 3, 2012 at 6:16 AM, Narendra Bagade bagadenaren...@gmail.com wrote: try to find where apk is stored after downloaded from market.and try to catch your application icon click event.customize it according to your requirement. This doesn't make any sense..., Catch it where? In the

Re: [android-developers] Re: LogCat not displaying TAG “SMS”

2012-01-03 Thread Kristopher Micinski
Which log class? You are aware that the log class, as implemented in android, makes a native call, which then pushes the information into a system logging utility. (However, I did not know about this log separation, and would be interested to hear about it.) Perhaps the *logcat* utility is

Re: [android-developers] Detecting app launch/switching to an app

2012-01-03 Thread Kristopher Micinski
On Fri, Dec 30, 2011 at 4:44 AM, galapogos gois...@gmail.com wrote: I'm writing an app similar to app protector - it prompts the user to authenticate himself when a protected app is launched. Since Android doesn't provide a way to use BroadcastReceiver on explicit intents, I'm detecting app

Re: [android-developers] voice recognition

2012-01-03 Thread Omais Ali
Hint: Sphinxbase and Pocketsphinx. On Tue, Jan 3, 2012 at 4:21 PM, Narendra Bagade bagadenaren...@gmail.comwrote: Hi All, I need a help regarding voice recognition voice biometric. Is any third party library is available for the same. pls. suggest me any sample application. --

[android-developers] Re: ICS and getAuthToken() problem - using Google APIs

2012-01-03 Thread H
If you set the callback parameter on the getAuthToken() to null then the method will block and wait and your activity's lifecycle isn't interrupted. You can then get the bundle returned and if there is an intent to ask show the grant credentials screen then you can manually invoke it with

[android-developers] Fwd: How can i display exactly on the top....?

2012-01-03 Thread Abhilash baddam
Hi, I am working maps. I am displaying different locations using marker. When i tap on the marker i can be to display a popup which will display always on the top screen, but how can i display exactly on the top of marker... here is my ItemizedOverlay Class.. private class SitesOverlay

[android-developers] Java Key store in Android

2012-01-03 Thread chander
hi all, i made a file encryption program, it encrypts a file using AES algorithm by using a secret key of 256 bits,but now my objective is to store this encryption key inside Java key store provided by JCE. but i have no idea about Key Store, please first explain me by using this key store how

[android-developers] Re: Can't see Hello World on AVD Unable to create sensors port:

2012-01-03 Thread Albert Pi
Opa, I use Windows XP/Dell Optplex with 4GB M and JDK 6 eclipse Indigo. Before you do anything, just make sure you have right tools for coding Android app. 1. Have JDK 6.0 (nit jre) installed 2. Have Eclipse(3.6/3.7) installed and have already installed the ADT Plugin. 3.created an good Android

Re: [android-developers] Java Key store in Android

2012-01-03 Thread Nikolay Elenkov
On Tue, Jan 3, 2012 at 11:49 PM, chander mohan.c...@gmail.com wrote: please explain me in brief so that i can save my key inside this KeyStore and if possible give me some links and resources also. so that i can move further to accomplish my task.

Re: [android-developers] How can i display exactly on the top....?

2012-01-03 Thread TreKing
On Tue, Jan 3, 2012 at 8:41 AM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: When i tap on the marker i can be to display a popup which will display always on the top screen, but how can i display exactly on the top of marker You should clarify.

Re: [android-developers] Re: deletable-assets

2012-01-03 Thread Carlos A. M. dos Santos
On Mon, Jan 2, 2012 at 2:04 PM, Mark Murphy mmur...@commonsware.com wrote: You can listen for ACTION_PACKAGE_REPLACED to determine if your application has been updated. Will the replaced package itself receive the broadcast? As far as I can tell the only way to get such notification is by means

[android-developers] Re: Cancelar ligacao

2012-01-03 Thread mdmota
Im doing call using the method : startActivity(new Intent(Intent.ACTION_CALL, Uri.parse(tel: + ph_number.getText(; How I did cancel the call after time. att On 27 dez 2011, 13:28, Lew lewbl...@gmail.com wrote: Courtesy of translate.google.com, mdmota wrote what translates to: I'm doing

Re: [android-developers] Re: deletable-assets

2012-01-03 Thread Mark Murphy
Sorry, I missed the MY, and, yes, it's new. On Tue, Jan 3, 2012 at 11:29 AM, Carlos A. M. dos Santos unixma...@gmail.com wrote: On Mon, Jan 2, 2012 at 2:04 PM, Mark Murphy mmur...@commonsware.com wrote: You can listen for ACTION_PACKAGE_REPLACED to determine if your application has been

[android-developers] Re: deletable-assets

2012-01-03 Thread Streets Of Boston
What is the actual problem you'd like to solve. There may be a 'workaround' to your issue, to reach the same goal. E.g. You could save a setting and if this setting has not the value you'd expect (i.e. it not being there on initial install, or an incorrect value after upgrade), your app will

Re: [android-developers] adding menu to Linear layout

2012-01-03 Thread TreKing
On Mon, Jan 2, 2012 at 1:36 AM, dust coo...@gmail.com wrote: would you pls give me an advice to solve this issue? Read documentation on LinearLayout. Read documentation on Menu. Understand the difference.

[android-developers] resoultion issues

2012-01-03 Thread jaggu
Hi iam facing issue screen resolution issues 1.samsung galaxy s2 its working fine 2.application when iam testing different device motorola,htc facing issues. how to solve this issue.to support all the devices screen resolution can any one suggest me about this -- You received this

[android-developers] Re: resoultion issues

2012-01-03 Thread skink
jaggu wrote: Hi iam facing issue screen resolution issues 1.samsung galaxy s2 its working fine 2.application when iam testing different device motorola,htc facing issues. how to solve this issue.to support all the devices screen resolution can any one suggest me about this

[android-developers] Re: Notification Background Color (ICS)

2012-01-03 Thread Brad Grimm
Thanks Mort for the find. I've written up a bug report: http://code.google.com/p/android/issues/detail?id=23863thanks=23863ts=1325611036 As a work-around I've found you can set the background color on the Layout in xml. So I use two separate layouts, one for 4.0.3 that sets the background to a

Re: [android-developers] How to create Widgets in android?

2012-01-03 Thread Jim Graham
On Tue, Jan 03, 2012 at 12:53:48PM +0530, android developer wrote: How to create Widgets? You start by writing the code for your project. Then you build it in Eclipse using the SDK. Then you test it. send me sample code or links Android Developers Guide. You should already know the link

Re: [android-developers] How to create Widgets in android?

2012-01-03 Thread Kristopher Micinski
Though the relevant portion of the SDK documentation is: http://developer.android.com/guide/topics/ui/custom-components.html kris On Tue, Jan 3, 2012 at 12:37 PM, Jim Graham spooky1...@gmail.com wrote: On Tue, Jan 03, 2012 at 12:53:48PM +0530, android developer wrote: How to create Widgets?

Re: [android-developers] Java Key store in Android

2012-01-03 Thread Chander mourya
Thanks nikolay On 1/3/12, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Tue, Jan 3, 2012 at 11:49 PM, chander mohan.c...@gmail.com wrote: please explain me in brief so that i can save my key inside this KeyStore and if possible give me some links and resources also. so that i can

Re: [android-developers] Re: resoultion issues

2012-01-03 Thread Ricardo Santos
Did you try making a layout to support the different screen types? http://developer.android.com/guide/practices/screens_support.html And, post screencaps... Ricardo On Tue, Jan 3, 2012 at 3:17 PM, skink psk...@gmail.com wrote: jaggu wrote: Hi iam facing issue screen resolution issues

Re: [android-developers] Show settings to allow configuration of application development-related settings.

2012-01-03 Thread TreKing
On Wed, Dec 28, 2011 at 3:20 AM, be1ay mailbel...@gmail.com wrote: What's wrong? You apparently don't know how to read - because both the error you yourself posted and documentation for the action you're using explain this pretty clearly.

[android-developers] Re: Show settings to allow configuration of application development-related settings.

2012-01-03 Thread Michael Wellington
You will need to add this activity to your android manifest file for the application. Each new Activity you wish to create will need to be added to the manifest file before you can start an intent with the Activity. -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: Show settings to allow configuration of application development-related settings.

2012-01-03 Thread TreKing
On Tue, Jan 3, 2012 at 1:15 PM, Michael Wellington lowpulse...@gmail.comwrote: You will need to add this activity to your android manifest file for the application. Each new Activity you wish to create will need to be added to the manifest file before you can start an intent with the Activity

Re: [android-developers] Re: Show settings to allow configuration of application development-related settings.

2012-01-03 Thread Michael Wellington
You're right. I didn't see that. In any case the error message says it plainly, *the Activity is not found.* -- 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

Re: [android-developers] How can i display exactly on the top....?

2012-01-03 Thread Abhilash baddam
any help regading this issue... On Tue, Jan 3, 2012 at 9:06 PM, TreKing treking...@gmail.com wrote: On Tue, Jan 3, 2012 at 8:41 AM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: When i tap on the marker i can be to display a popup which will display always on the top screen,

Re: [android-developers] How can i display exactly on the top....?

2012-01-03 Thread TreKing
On Tue, Jan 3, 2012 at 1:31 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: any help regading this issue... Maybe if you clarified what you're asking, like I asked the first time around.

[android-developers] Re: Access denied error while trying to install new API

2012-01-03 Thread Uday (Dave)
Right click on the sdkmanager.exe file select the option 'Run as Administrator'. Your problem is solved. -Dave On Dec 30 2011, 11:09 pm, assefa asse...@gmail.com wrote: Hi,  Not sure if this thread is still relevant but if it is, I had the same issue on windows and I was able to solve it by

[android-developers] Moving shifting

2012-01-03 Thread unionmoversuae
Welcome Enjoy world-class moving services at local rates! Union Mover Dubai is the moving company created to make your moving experience a stress free one. Our focus is on top notch customer service, and fast, professional moving services. We aim to offer our customers the quality of service they

[android-developers] how to delete a submenu item in onCreateOptionsMenu()?

2012-01-03 Thread Edmund
Hi, When I delete an item with menu.removeItem() in onCreateOptionsMenu() it works fine, but if the item is a submenu-item... it doesn't work: @Override public boolean onCreateOptionsMenu(Menu menu) { MenuInflater inflater = getMenuInflater();

[android-developers] How to get technical support from Google?

2012-01-03 Thread Charles Gordon
How do I get paid technical support from Google for Android development? Someone asked this question two years ago and did not get an answer. There must be some way of getting direct support from Google for Android development for a fee. -- You received this message because you are subscribed

Re: [android-developers] How to get technical support from Google?

2012-01-03 Thread Mark Murphy
On Tue, Jan 3, 2012 at 4:07 PM, Charles Gordon digigo...@gmail.com wrote: How do I get paid technical support from Google for Android development? You don't.  There must be some way of getting direct support from Google for Android development for a fee. Nope, sorry. -- Mark Murphy (a

Re: [android-developers] How to get technical support from Google?

2012-01-03 Thread Kristopher Micinski
Uhh.. No, this isn't possible... Google solely develops the platform. They don't help individual developers in any way other than occasionally responding to bug reports or some interesting questions. What leads you to believe that such a large company would act as a consultancy? I doubt

[android-developers] Re: How to get technical support from Google?

2012-01-03 Thread Bret Foreman
I have yet to see a well formed Android question come up in this forum and not be discussed exhaustively by world-class experts. The only thing you don't get here is timely attention. But if you can wait a day or two for a response then this forum is as good as it gets. If you have very little

[android-developers] How To Debug Hangs

2012-01-03 Thread John
I have a customer with a 2.2 Samsung device. He claims that my app is displaying a busy dialog for 15 minutes, at which point he presses the home button. He then goes into Settings and does a Force Stop. Is there any way to get a stack trace of where the app was at the time of the force stop? Is

Re: [android-developers] How To Debug Hangs

2012-01-03 Thread James Black
Write to the log to see what is happening and when it is forced close use Logcat to have him send the log to you. Or write your own log and have a button to send the last log to you. On Jan 3, 2012 5:06 PM, John jo-d...@hotmail.com wrote: I have a customer with a 2.2 Samsung device. He claims

[android-developers] Re: ICS and getAuthToken() problem - using Google APIs

2012-01-03 Thread Spiral123
thanks for the response. I actually do something similar to what you are suggesting. The getAuthToken blocks nicely, but as soon as I fire off the startActivityForResult(intent,REQUEST_AUTHENTICATE) then I get a Permission request dialog on the screen and meanwhile the calling activity gets

[android-developers] Re: emulator: WARNING: Unable to create sensors port: Unknown error

2012-01-03 Thread OpaSmurf
I got past the emulator warning by building from the command line but the page at: http://guide/developing/building/building-cmdline.html fails to load so finding the correct commands to issue is a challenge. I have twice built/installed the project but have been unable to restart. Perhaps this

[android-developers] Re: adding menu to Linear layout

2012-01-03 Thread dust
I already read those docs. and i know the difference. I just want to know any tricks to make it work. ... i take the answer that it's impossible. On 1월4일, 오전1시59분, TreKing treking...@gmail.com wrote: On Mon, Jan 2, 2012 at 1:36 AM, dust coo...@gmail.com wrote: would you pls give me an

Re: [android-developers] Re: adding menu to Linear layout

2012-01-03 Thread TreKing
On Tue, Jan 3, 2012 at 5:23 PM, dust coo...@gmail.com wrote: i take the answer that it's impossible. The way you're going about it - yes. By other means, no. Nothing is stopping you from overriding the menu key to show your own custom menu, layed out and coded to behave as you wish.

[android-developers] TYPE_SYSTEM_ALERT for Activities

2012-01-03 Thread galapogos
I'm trying to throw an intent to an activity that's triggered by some event, and I'd like for the activity to halt execution of everything else while it's on top. As such, I'm setting the activity as TYPE_SYSTEM_ALERT in the activity's onCreate() method: super.onCreate(savedInstanceState); Window

[android-developers] Programatically showing the soft input keyboard - woes

2012-01-03 Thread Zsolt Vasvari
I have an activity for which I want to show the keyboard immediately when the activity starts. Please see the following 2 screenshots I uploaded to an album: https://plus.google.com/u/1/photos?tab=Xq#photos/102109440646458760555/albums/5693607597471294017 Screen shot #1 show what happens if I

[android-developers] How to use setFlags?

2012-01-03 Thread galapogos
Hi, I'm trying to set certain flags for some of my windows, and I'm not sure how to do it. The Window.setFlags()documentation says the following: public void setFlags (int flags, int mask) Since: API Level 1 Set the flags of the window, as per the WindowManager.LayoutParams flags. Note that

Re: [android-developers] TYPE_SYSTEM_ALERT for Activities

2012-01-03 Thread TreKing
On Tue, Jan 3, 2012 at 9:11 PM, galapogos gois...@gmail.com wrote: I'm trying to throw an intent to an activity that's triggered by some event, and I'd like for the activity to halt execution of everything else while it's on top. What is everything else?

[android-developers] MapActivity.isRouteDisplayed()

2012-01-03 Thread Adam Stroud
I have a question as to when MapActivity.isRouteDisplayed() needs to return a value of true. The javadoc gives the example of displaying driving directions as a reason to return true. Does anyone know if a value of true needs to be returned if the map is simply plotting a route that a devices

[android-developers] need help on text rotation

2012-01-03 Thread chowdary nani
Hi All, I need help on rotating the text to certain angle on key code events in android will please help me any one. Thanks Naveen -- 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] how to fijnd all this

2012-01-03 Thread rahul jain
All, How to find all this ? CPU usage of the app Memory usage of the app Disk usage of the app Network usage of the app Battery usage of the app. Thermal usage of the app. crash reports of apps. Any company which provides all these data? Rahul -- You received this message because you are

Re: [android-developers] need help on text rotation

2012-01-03 Thread Jim Graham
On Wed, Jan 04, 2012 at 11:02:31AM +0530, chowdary nani wrote: I need help on rotating the text to certain angle on key code events in android will please help me anyone. We can't right now, because you haven't told us what the problem is. What have you done so far? What errors are you

[android-developers] Nine patch images are good option for tablet

2012-01-03 Thread Teena sharma
Please suggest that Nine patch images are good option for tablets ?? -- 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 fijnd all this

2012-01-03 Thread Jim Graham
On Tue, Jan 03, 2012 at 10:01:24PM -0800, rahul jain wrote: How to find all this ? CPU usage of the app Memory usage of the app Disk usage of the app Network usage of the app Battery usage of the app. Thermal usage of the app. crash reports of apps. Start with the developers guide.

[android-developers] Re: TYPE_SYSTEM_ALERT for Activities

2012-01-03 Thread galapogos
I guess I mean any other app that's not part of my activity. Just to be clear, what's the difference between a regular window and one that has the TYPE_SYSTEM_ALERT flag set? On Jan 4, 11:34 am, TreKing treking...@gmail.com wrote: On Tue, Jan 3, 2012 at 9:11 PM, galapogos gois...@gmail.com

Re: [android-developers] voice recognition

2012-01-03 Thread Narendra Bagade
Thank you for reply.. But it is for NDK only... Can i use with android sdk. On Tue, Jan 3, 2012 at 6:21 PM, Omais Ali omaisat...@gmail.com wrote: Hint: Sphinxbase and Pocketsphinx. On Tue, Jan 3, 2012 at 4:21 PM, Narendra Bagade bagadenaren...@gmail.comwrote: Hi All, I need a help

[android-developers] Regarding Transfer Files.

2012-01-03 Thread yogendra G
Hi All, I require sample code for transfering pics from phone to pc through bluetooth. Please help me out in this . Regards, Yogi -- 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: Nine patch images are good option for tablet

2012-01-03 Thread Zsolt Vasvari
Suggesred. On Jan 4, 2:05 pm, Teena sharma sharma.teena...@gmail.com wrote: Please suggest that  Nine patch images are good option for tablets ?? -- 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: MapActivity.isRouteDisplayed()

2012-01-03 Thread Zsolt Vasvari
WTF does needs to return mean in your book? On Jan 4, 11:54 am, Adam Stroud adam.str...@gmail.com wrote: I have a question as to when MapActivity.isRouteDisplayed() needs to return a value of true. The javadoc gives the example of displaying driving directions as a reason to return true. Does

Re: [android-developers] How can i display exactly on the top....?

2012-01-03 Thread poncho
Hi, I'm not sure that I understand, what's wrong with: popup.layout( left, top, left + width, top + height); /Poncho On 01/04/2012 08:21 AM, Abhilash baddam wrote: Hi, My problem is when i tap on the marker i want to show the popup exactly on the top of the marker like displayed in

[android-developers] call duration...?

2012-01-03 Thread Abhilash baddam
Hi, I want to know the call duration, when I called to other number and when that call-ends. How can i get the call duration...? -- 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] Application#onCreate() called more than once?

2012-01-03 Thread Nikolay Elenkov
There was a recent thread that states that there is only one Application instance per-APK-per-process. Therefore, Application#onCreate() should be called only once, but I am getting an error that suggest it's called twice: once from the app, and once from a widget broadcast receiver. Is this

Re: [android-developers] call duration...?

2012-01-03 Thread Narendra Bagade
refer related content provider like call log. On Wed, Jan 4, 2012 at 12:26 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, I want to know the call duration, when I called to other number and when that call-ends. How can i get the call duration...? -- You received this

Re: [android-developers] Application#onCreate() called more than once?

2012-01-03 Thread Mukesh Srivastav
You need to instance of your Application Class (ACRA) where ever you are using. //some thing like this. ACRA acraapplication; //class variable, could be in dbhandler,broadcastreceiver where ever u want. //your method. could be onReceive, or anymethod u wanted to use it. acraapplication =

[android-developers] How to route sound to the speaker, even if phones are plugged in?

2012-01-03 Thread Terry
I seem to be unable to route sound to the speaker when the phones are plugged in. I want to generate an alarm to/in the speaker - to get the user's attention - even if the phones should be plugged in. But after having tried everything I can think of (using the AudioManager), I seem unable to do

Re: [android-developers] Application#onCreate() called more than once?

2012-01-03 Thread Nikolay Elenkov
On Wed, Jan 4, 2012 at 4:16 PM, Mukesh Srivastav mukicha...@gmail.com wrote: You need to instance of your Application Class (ACRA) where ever you are using. No offence, but do try to read posts before answering. ACRA is not my application class, if you don't know what it is, Google it. --

Re: [android-developers] Application#onCreate() called more than once?

2012-01-03 Thread Mukesh Srivastav
I am sorry for that. On Wed, Jan 4, 2012 at 12:59 PM, Nikolay Elenkov nikolay.elen...@gmail.comwrote: On Wed, Jan 4, 2012 at 4:16 PM, Mukesh Srivastav mukicha...@gmail.com wrote: You need to instance of your Application Class (ACRA) where ever you are using. No offence, but do try to

[android-developers] Document Viewer

2012-01-03 Thread subha
Hi, I have a word document on server, i got the word doc through URL . How to view this word file in my android application. Thanks By, subha -- 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] Document Viewer

2012-01-03 Thread Kristopher Micinski
In general showing word documents might be a difficult procedure. This answer will be of interest to you: http://stackoverflow.com/questions/7921699/how-to-render-pptx-word-in-android It might be reasonable to assume that the user has some browser for .docx files on their device, and you can use