Tagged Questions

1
vote
1answer
46 views

AlertDialog MultiChoiceItems Listener problems.

I am currently using the AlertDialog.builder to create a multichoice list for the user (checkboxes). This works great, except we want one of the buttons to deselect all of the others in the list. …
2
votes
1answer
364 views

Android animated GIF (Cupcake)

Hi everyone, I've used animated GIFs in Android pre cupcake however my old code no longer works. To be exact: Movie.decodeStream Always returns null... Does anyone have any workarounds/fixes to …
0
votes
3answers
319 views

How to time-bomb an Android application?

Hello does anyone have a code example of how I can time bomb an Android application so It will not work after a given date? I would like to release a "beta" application for testing but would like to …
4
votes
5answers
213 views

Cake Comparison Algorithm

This is literally about comparing cakes. My friend is having a cupcake party with the goal of determining the best cupcakery in Manhattan. Actually, it's much more ambitious than that. Read on. …
0
votes
1answer
270 views

Android Screen Timeout

Hello all. I know its possible to use a wakelock to hold the screen, cpu, ect on but how can I programmatically change the "Screen Timeout" setting on an Android phone.
1
vote
1answer
143 views

Does anyone know whether the Android addProximityAlert on the LocationManager is battery intensive.

I just basically want to add about 20 and sometimes 80 Proximity Alerts with no time expiration with a radius of around 500 meters. Just wondering whether by doing this will suck up the battery real …
2
votes
2answers
520 views

Android AlarmManager

Can someone please show me some sample code on how to use an AlarmManager in android. I have been playing around with some code for a few days and it just won't work... I need to trigger a block of …
1
vote
2answers
277 views

Android Application and Timers

Hello I have an android application which has a service running. After 20 mins from that service and other systems (such as GPS) starting I would like it to automaticly stop. I assume I need to use a …
2
votes
1answer
767 views

How to programmatically enable GPS in Android Cupcake

I'm currently writing an app in Android that works with the GPS, at the moment I'm able to work out whether the GPS is enabled, my problem is that I want to enable the GPS on app startup if it is …
0
votes
1answer
413 views

Killing android application on pause

Hello. I have an application which I would like to be fully disabled/closed when it is paused (IE. When the user presses the Home, End (call) and Back button I would like the application to be closed, …
4
votes
2answers
362 views

Android Trial Applications

Hello, I have a application which I want to hit the market as a Paid app. I would like to have other version which would be a "trial" version with a time limit of say, 5 days? How can I go about …
2
votes
1answer
293 views

Android wake lock force close

Hello I am trying to implement a wake lock for an application. PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE); PowerManager.WakeLock wl = …
0
votes
2answers
500 views

Using a wakelock in a service Android 1.5

Hello I am trying to use a service to control a wakelock so I can permanently leave the screen on when my application is running. I create the wakelock and activate it in onCreate() and release it in …
2
votes
1answer
399 views

Preventing application/screen timeout Android

Hello I have an Android (1.5) application which needs to be constantly running when a button is pressed. So, when a button is pressed I would like the phone to remain on and not want the screen or …
0
votes
0answers
286 views

How do I create an auto-run Dialog themed Activity in Android 1.5 (Cupcake)?

In the onCreate() of my "main" class I'm checking some things and occasionally need to show a popup. The popup is just another Activity which has been themed as @android:style/Theme.Dialog in the …