Besides making an HTML5 app (which may very well be the answer to this question), are there any other languages I can develop in for android besides Java?
Hi, I need to know the signal strength of a Bluetooth connection to a remote device that I make with my Android 2.1 phone. From the SDK, I can see that I can determine the RSSI at the time I discover the remote device. But I can't see how to update that RSSI value over time.
Can someone give me a hand? Thanks!!
If you have a handle to a Spinner object in an Android activity, can you programmatically pop open the spinner options - thereby forcing the user to choose an option even though they did not click on the spinner themselves?
Hi,
Is it possible to change the default shape (i.e rectangular) of the button (normal button as well as imagebutton) to something else maybe like star or a triangle in Android? Any tutorials or sample code would be much appreciated.
I note the release a few days ago of the static library bringing fragments to Android versions prior to 3.0, but does this library include the ActionBar? I suspect not.
I assume that for an app that will work on pre-3.0 versions, that it needs a hand-built ActionBar implementation for versions up to 2.3 and then to use the OS default ActionBar in v3.0?
for some reason I assumed the library had ActionBar in it, but as I dig further I'm not finding any evidence of its presence.
Basic example, if I bought a chipset with a light socket and bulb soldered to the chipset; then put a USB cable with the mini-USB plug on the end to get plugged into the android phone. Can I write a Java application to turn on/off the light, get the status of the light(on/off) and maybe power a super-small led/bulb with power from the phone itself?
Any insight at all would be greatly appreciated. Thank you
Hi,
im having following application flow in my android app,
Login-Home-screen1-screen2-screen3-screen4- logout
In the screen4 i've a log out button,which allow user to logout from the application and re login.when i re-logn to the app previous data still be shown,is there way to start the application in fresh when user log out from the app
NOTE: all the above activities launch mode set to "single task",
regards,
Sam.
I want to lock files that is on the sdcard of android.
I need to lock them so no one accept my software can delete copy move or send them over bluetooth or any other way.
How can I do it?
So basically the code "almost" works - the problem is that the system does not appear to know that the system wallpaper have been changed or does not do anything about it. Starting and closing another app manually appears to enforce an update.
In an event call the following is done:
getApplicationContext().setWallpaper(pWallOne);
Is there some way of telling the android system to update the graphics or to do some cheap trick that forces it to? Any help or tip would be very much appreciated!!
Hi,
In the Android application I am building, I want to be able to communicate with a local server developed in Django. (Basically a login page and a home page populated with posts and images from users) So do I need to use XML Parsers for the parsing the response from a Django server or is it possible for the server to respond with strings which can be directly used? Also what about images?
Regards,
Primal
Hi,
I am writing an application to listen the SMS inbox in android with one activity and one BroadcastReceiver.Once the SMS comes the Receiver is showing alert message.But i want to send the message information from Receiver to Activity.I don't know how to achieve this.Anybody knows it please help me.
I want to implement PDF viewer in my android application. My application has option of reading some document and i want to open those doc in PDF by default. My application .apk is ready and I have PDF viewer apk with me . What I want is to merge these 2 apk into a single project ? Can anyone help me.This will be really helpful.
Thanks in advance.
Regarda,
Praween
In reference to my previous question regarding making the .EXE file for demonstration
http://stackoverflow.com/questions/2862067/how-to-make-exe-for-demonstration-of-a-android-software-built-in-eclipse
Can anyone explain creating batch file to launch the emulator?
Hi,
Actually make application on Google android g1 but normal screen size But I Want To increase
my screen size up to 1024x600 then how I can increase please help.........?
I am trying to create PHP script to get app version from Android APK file.
Extracting xml file from APK (zip) file and then parsing XML is one way, but i guess it should be simpler. Something like PHP Manual, example #3.
Any ideas how to create script?
How to suppress Spinner double clickable problem of Android.
Try launch any application that having Spinner.
Then double tap it.
It will show context menu twice.
I'm looking into writing simple graphics code in Android and I've noticed some synchronized() blocks.
What is the reasoning behind this and how do I know when I should be "synchronizing" my code?
I was wondering is it possible to get a notification of when a new configured network is added to the WifiManager in Android?
I know you can get the current list of configured networks
getConfiguredNetworks
But is it possible to get notification of when a new one is added?
I dont see anything in the WifiManager that would be helpful.
Has anyone any other ideas? Or insight into how this could be achieved?
Hello everybody,
I want to take a photo with an Intent on android.provider.MediaStore.ACTION_IMAGE_CAPTURE,
next crop the result with:
Intent intent = new Intent("com.android.camera.action.CROP");
intent.setClassName("com.android.camera", "com.android.camera.CropImage");
I follow the sugestions made at:
Android: Crop an Image after Taking it With Camera with a Fixed Aspect Ratio
However when calling the crop activity I get (already checked the LogCat output) a permission error, saying something like:
Permission denial on a Intent to access the temporary image created by the camera activity on my SDcard.
Can you please suggest a solution for Android 2.2 ?
Thank you
I uploaded an app built with 1.5 SDK into market, but someone told me they can not find it in the market in their phone. I do not know why, because I have test it in 2.1 emulator.
Then how to know if my app is available in android market with all versions, is there any url to test that?
In an Android application, we usually got the "Force Closed" error if we didn't get the exceptions right.
How can I restart my application automatically if it force closed?
Is there any specific permission is used for this?