Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
3answers
22k 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 ...
21
votes
3answers
6k views

Android Trial Applications

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 doing this? ...
13
votes
6answers
19k 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 ...
4
votes
5answers
368 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. ...
4
votes
1answer
5k 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 = ...
3
votes
3answers
2k 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 ...
3
votes
2answers
6k views

Android Screen Timeout

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.
3
votes
2answers
3k views

Preventing application/screen timeout Android

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 CPU to ...
2
votes
1answer
555 views

Using reflection in Android for backwards compatibility

I was reading over at the Android development website about using reflections. But I'm really not grasping how to use it. I need this Java file to run on a 1.5 (SDK3) device but just ignore the new ...
2
votes
3answers
1k 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
8k views

Android animated GIF (Cupcake)

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 play animated ...
2
votes
1answer
1k 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 ...
1
vote
1answer
92 views

Android Sqlite tow Rows as tow Columns, Pivots?

Came to know its called pivots, but couldn't get examples for sqlite without aggregation. Schema: Readonly Table foos(_id, foo) (10 max records) Readonly Table bars(_id, bar) (300 max records) ...
1
vote
3answers
146 views

setText, resets and locks when entering landscape

Hey all thanks for looking this through. I really can't understand why this happends, though it might have something to do with my background thread which is processing audioinput. All works fine ...
1
vote
1answer
343 views

Cupcake(API3) friendly way to pause/stop sound loops in SoundPool? Any ideas?

Quick note: I'm using the SoundPool class http://developer.android.com/reference/android/media/SoundPool.html What I have here is a simple button that plays a looped sound while it's pressed. It ...
1
vote
4answers
384 views

Possible to only load specific lines of code according to Android OS version?

Is there a simple line of code that would allow only loading the code if the OS version meets the requirements? Lets say I have my target OS as 2.2 but the min sdk is 3 for android 1.5 so even if i ...
1
vote
2answers
1k 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 ...
1
vote
3answers
6k views

Killing android application on pause

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, ...
1
vote
2answers
5k 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 ...
0
votes
0answers
12 views

cakephp: where to place cupcake forum plugin on local production server?

I'm trying to get the cupcake forum plugin to work on my local production server. Currently i have the forum folder under cake_prod/app/plugin. And i'm getting the missing controller error when i ...
0
votes
1answer
22 views

cakephp: search page giving http 404 webpage cannot be found

When I click the search link in the cupcake forum plugin, enter the search criteria and click submit, I get a blank page in firefox and http 404 website cannot be found in IE. I have no idea on what ...
0
votes
1answer
22 views

cakephp: cupcake forum login function bug

I'm trying to get cupcake forum plugin's login function to work. In the users_controller.php, since the $user variable in the login function was not populated, it was giving errors. So I modified ...
0
votes
0answers
35 views

cupcake forum plugin: notice 8 undefined index in /forum/controllers/components/auto_login.php

I'm trying to get my cupcake forum plugin to work without any bugs. I'm able to sign up without any problem, but i'm not able to login. Since the $user variable wasn't getting instantiated, I ...
0
votes
1answer
202 views

Android application works on 2.2 devices but not 2.1 and below

I am having an interesting issue. Users who have downloaded my app are reporting back that the app does not run on Android devices running some 2.1 devices. I've searched through all of my code and ...
0
votes
0answers
41 views

Get an VerifyError on MB200 and LG-GW620

I recently add an CrashRepport in my Android app. On MB200 and LG-GW620 (Android 1.5), i get this error : java.lang.VerifyError: fr.ybo.transportsrennes.TransportsRennes at ...
0
votes
1answer
81 views

MySQL incorrect ineger value (encoding)

Alright here is my delema. I have a .rpt file that is encoded in UCS-2 and is basically two columns separated by a ','. My query is; load data infile 'file_name' into table table_name fields ...
0
votes
0answers
72 views

Cupcake Android booting hangs after displaying android text on LCD

I am trying to boot Android cupcake version on a target board. The boot logs are not seen after few debug messages. The last few lines of the log are pasted below: I/SystemServer( 34): Starting ...
0
votes
1answer
122 views

Generating Thumbnail Image for Android 1.5

For API Level 8, to generate thumbnail image we use Images.Thumbnails.getThumbnail. What should be the approach API Level 3, if one has to generate thumbnail images?
0
votes
1answer
135 views

Can't delete posts in forum. (CakePHP)

I'm using the Cupcake Forum plugin within CakePHP. There's a form for selecting the desired posts, and then submitting the form to delete the posts. The form data is apparently being sent to the ...
0
votes
1answer
175 views

Why is my app not showing up for 1.5 users in the Android Market?

The app is Flash Cards Max on the Android market. I recently updated my app with a 1.6 only feature. However, I still want the app to work with those that have Android 1.5. I built it using Android ...
0
votes
2answers
1k views

set flash mode camera.parameters android 1.5

I'm trying to use the camera in an Android app using the 1.5 API. I want the camera to flash for every picture. However, when I looked at the API for camera.parameters, the setFlashMode() method is ...
0
votes
2answers
141 views

Trying to make a Adapter class to choose .Java file depending on firmware version

What I did was create two .java files. One that can compile and run on a 1.5 phone (SDK3) and then one that works on 2.0(SDK5) So for this example i'll call the 1.5 file ExampleOld and the new one ...
0
votes
1answer
209 views

How to Ignore certain methods and code in a Class? Based on SDK

I was reading over http://android-developers.blogspot.com/2009/04/backward-compatibility-for-android.html But I'm really not grasping how to ignore certain lines of code. I have this Activity (posted ...