HTC EVO 4G :: What OS Do Use To Interact
Jun 15, 2010
just wonder what people used to interact with their Evo....I keep hearing Linux is better to use than windows? I'm trying to get linux up and running for when i get my evo if that is the case. Just wonder if its worth the trouble...is there anything i'm missing if i dont use linux.
View 12 Replies
Nov 1, 2010
Today, the focus of a cell phone's capabilities is drifting away from plain making a phone call.
And somehow, this shows in the API's too. Therefor I'm wondering: if I want to write an app that e.g. pitches up, records, scrambles... an incoming call - you know, the voice on the other side -, what aspect of the API should I use?
I looked into Android, into Windows Phone, iPhone... (briefly), but had no luck. Is this just unintended usage?
View 4 Replies
View Related
Oct 4, 2009
I'd like to use python scripts as plugins for an app I'm developing. This seems to be possible by interacting with android-scripting-environment (ASE), as is done by Locale, but I haven't found any documentation about this. How you execute ASE scripts from your own app?
View 1 Replies
View Related
Apr 30, 2013
If I wanted to create an app that manipulates, reads the data of, or controls an external electronic device, what coding or technologies are involved in this? some apps control an toy RC plane in the room.
View 1 Replies
View Related
Jun 5, 2009
Is it possible for an app icon to drag over and interact with a widget, similar to the action of deleting an icon or adding something to a folder?
View 2 Replies
View Related
Jul 21, 2009
I'm trying to work with a web service (that I have no control over) that returns a SQLite database when you query it. Is there any way to do this?
View 3 Replies
View Related
Mar 22, 2012
I am trying to get an application to interact with basic settings of an andriod phone so that the functionality of the app can be switched on or off in the main settings functions...
View 1 Replies
View Related
Aug 27, 2010
My application needs to perform some activities in background (like interacting with the network and check the location and some other stuff), having or not the main activity visible. Which is the best way to achieve this? Should I write a service for each kind of job? Or just one service that performs everything? I am aware that I will need to launch threads / asynctasks in any case because the service runs on the same thread of the UI, but maybe having several services is a more clear and readable structure.
View 7 Replies
View Related
Sep 3, 2010
That I can download to interact with other android users.
View 2 Replies
View Related
Sep 20, 2010
I am creating an app which allows for many different Activities to be started from a TabActivity(up to ~25). Most of the activities require data from the sqlite database, so when onCreate is run, an AsyncTask creates an SQLiteOpenHelper object(which will open a readable/writable database), runs a query, data is retrieved, and everything is then closed.
I was just testing messing around to see if i could break something, so i added every Activityto the TabActivity's TabHost. I then started mashing each tab as quickly as possible.
I noticed that very quickly i began to see in the LogCat: Caused by: android.database.sqlite.SQLiteException: database is locked: BEGIN EXCLUSIVE; and the app proceeded to die.
Typically there will only be about 4-6 tabs(i can just limit the user anyway) for the TabHost. I haven't been able to break anything with a small amount of tabs to mash, but i am still worried that maybe i am accessing the database in a poor way.
How can i prevent my SQLiteDatabase objects to cause a lock?
If i create a ContentProvider will that eliminate the possibility of database locking?
Do you have any suggestions for changes I could make for accessing data from an SQLiteDatabase?
I ended up taking the approach of using the Application class and storing 1 SQLiteOpenHelper and trying my best to keep it synchronized. This seems to be working great - i put all my 25 activities in the TabHost and mashed away on them with no errors.
I am calling ((SQLiteDbApplication)getApplication()).setDbHelper(new DBHelper(this, Constants.DB_NAME, null, Constants.DB_VERSION_CODE)); method(shown below) in every onCreate() in my activities
Any further suggestions to this approach or to the changes i made using this Application class?
CODE:...................
View 3 Replies
View Related
Feb 11, 2010
I'll come up with any excuse to get a chance to write my first Android application. I've never done much with it except for a couple of tutorials.
I've got a Windows application that controls a device, and the computer isn't necessarily right next to it. I think it would be great to be able to use my Droid to issue the device commands, but I'm not sure where exactly to start. I don't have a problem writing the GUI code or Java required to send commands to the PC, but it's the wireless connection to the PC that I don't know how to approach.
Bluetooth seems like a good choice. I have a USB-Bluetooth adapter, but no Bluetooth API on Windows. Can anyone suggest one? From reading other questions here on SO, it sounds like the 2.0 SDK has some sort of Bluetooth API, so that's good.
Another option is to use 802.11, and then write a web page / service that would allow the phone to issue commands to the device.
View 2 Replies
View Related