0
votes
2answers
29 views
How to create bitmap from integer array in C / OpenGL
I am trying to move my code from Java to C, and I have encountered a problem while trying to find a function in C that can take an array of ints and create a bitmap from it for OpenGL. In Java, I …
0
votes
3answers
23 views
Getting Android’s system preferences without having any context
In an Android utility class, I want to get a system preference value in a class, but I don't have the context there, because the class that calls it doesn't have the context either. I've found that …
0
votes
2answers
22 views
Android - Activity from a service?
I am extending the IntentService class to run a background service on Android. The service starts after bootup immediately. I want to pop-up a user input box from this service periodically. So, I …
0
votes
2answers
51 views
Dial Number Without Prompt
I'm trying to write a function for the Android Platform that will allow me to call 911 without any sort of prompt. I have already added the permission "android.permission.CALL_PRIVILEGED" I just need …
0
votes
2answers
37 views
Locating local hospitals in android
I want to be able to plot every hospital within 10 miles of my current location on the map in Android. I've already started with this code as a base …
0
votes
1answer
18 views
Overriding AnalogClock in Android
Hi all,
I want to create an AnalogClock that can display a preset time, given as a parameter.
And I want to draw between the background and the hands. I want to paint the area between the …
2
votes
2answers
28 views
“SD Card” permission appears on 2.0 devices?
Hi,
I wrote an Android application. These are the permissions I requested:
INTERNET
ACCESS-COARSE-LOCATION
ACCESS-FINE-LOCATION
ACCESS-NETWORK-STATE
CHANGE-NETWORK-STATE
On 1.5 devices, it looks …
0
votes
4answers
45 views
Android “Hello, MapView” Tutorial - Map Tiles Do Not Load
I am new to Android software development and new to this site. I am hoping someone might have some experience with the problem I am having.
I've been following the Hello, MapView tutorial in order …
0
votes
2answers
48 views
How to parse (non well-formed) HTML in android ?
How to parse non well-formed HTML in android ?
I tried to use XOM and TagSoup, but i get the following error when creating the Builder:
11-26 20:42:39.294: ERROR/dalvikvm(1298): Could not find …
0
votes
1answer
27 views
ANDROID: if WiFi is enabled AND active, launch an intent …
This is what I would like to do :
=> IF WiFi is enabled AND active, launch an intent (in fact it's a WebView that gets its content=>the instructions of my app on the web)
=> IF NOT, then I would …
0
votes
3answers
48 views
Drawable => grayscale
What would be the right way to turn a color Drawable into a grayscale one (to indicate disabled state)?
EDIT:
B/W => grayscale
0
votes
3answers
86 views
Android data storage - File vs SQLite
I am developing an application that periodically sends information to an external server. I make a local copy of the data being sent, for backup purposes.
What is the best option to store the data …
0
votes
1answer
24 views
How do I show a dialog after the Thread has encountered an uncaught exception?
I want to detect when an uncaught exception has happened in my Android app. Once detected, I want to display a confirmation dialog
How do I get this confirmation dialog to display? When I tried …
2
votes
14answers
220 views
When should and shouldn’t you break away from OOP for speed/performance?
In their developer articles for Android, Google states that you should usually declare public variables rather than private ones with getters and setters to enhance performance on embedded devices (I …
1
vote
1answer
32 views
Android kernel compile and test with Android Emulator
Has anyone successfully compiled the android kernel and tested it in the Android emulator, and if so is there anything that special that needs to be done?
Documentation for the SDK is excellent, …
