phone

Android browse SQLite database on phone

How can I browse the SQLite database that I am creating in my app on my Android myTouch phone? When I log in through adb shell, sqlite3 gives me a permission denied. Is there another way to check if my database and tables are actually being created, and if rows are being inserted? I am not able to use the emulator, since it doesn't pla...

Can I use a drawable as a shadowColor in a TextView?

I have a TextView and I want to give it a glowing effect using an image from the res/drawable folder. How can I do this? ...

"Audio queue get Current time failed" : While adding ear phone audio jack to the iPhone device

Hi, I am getting the following error while connecting ear phones to the device (iPhone) "Audio queue get Current time failed" while playing live audio stream. After connecting the ear phones, I get an alert saying the error. any idea how to rectify this issue. ...

Android contact query

Hey, I have a problem in querying phonebook contacts. What I need to do is get a list of contacts that have both phone and email entered or are of a specific type. Basically like this: public static final String SELECTION = "("+ContactsContract.Contacts.HAS_PHONE_NUMBER +"='1') OR " + RawContacts.ACCOUNT_TYPE + "='" + Constants.AC...

Mobile device testing for BlackBerry smart phones - acquiring test phones

Hello, I have been developing a BlackBerry application for about 7 months, and I have started to do a lot of testing. Does anyone have any advice on the best way to test my application on different BlackBerry devices (without having to purchase them)? I have the BlackBerry Tour and the BlackBerry Storm, but I can only have my Verizon n...

Android: popup to reboot phone

I would like to produce a popup window giving the user to ability to select yes to reboot the phone. Possible? ...

Android detect phone lock event

I want to be able to detect the phone lock event. When my app is running, if I press the red button (call end button/power button), the phone gets locked and the screen goes blank. I want to be able to detect this event, is it possible? Thanks Chris ...

Make a phone call with qt 4.6.3

Hi, I need to trigger a phone call from a Qt application. I looked to previous post without find a complete answer. I need to make it with qt 4.6.3. I'm quite new to symbian development, I'm using the last nokiaSDK. It MUST work ONLY on n97 and E71. Can Anybody provide a solution? May be a solution exec an extenal process using QProces...

how to install python on samsung S5600 halley evo

I would know how can i install python on samsung S5600 Halley evo...i have to do something like a jailbreak? it is possible? and, if yes, how? thaks :) ...

Placing Phone Calls To Android Phone From A Program over Bluetooth

I am kicking around the idea of installing a netbook in my car, and I'd like to write an app (C# and WPF based) that would essentially be a gigantic phone interface connected via bluetooth to my Android phone (Nexus 2.2). There was already a similar question asked here, however based on a google search and response here I guess it's not ...

International phone number max and min?

What is the max and min digits for an international telephone number? (country code + area code + phone number) ...

android get contact's name and phonenumber for android 1.5

So far I have this code from examples I have seen on here: public class testLayout extends Activity { final int PICK_CONTACT = 0; ImageView image = null; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main);...

Why I initialise a struct in this way make my phone crashed?

I defined a struct: typedef struct myStruct{ int32 iMem1; int16 sMem2; int32 iMem3; }myStruct; And initialise it: void main(){ myStruct s1 = {0, 1, 0}; return 0; } When I run it in my phone, it crashed my phone. If I initialise it another way: void main(){ myStruct s1 = {0}; return 0; } Everything is ok! ...

IPhone Facebook Api Friends.getLists returns nothing

In my application I try to get list of friends using Facebook Api method Friends.getLists. I have to use this Api since I use another methods from this Api in my App and they works fine. So I cannot use others methods. This code returns just nothing: [[FBRequest requestWithSession: _facebookSession delegate: self] call: @"facebook.Frie...

Developing apps for camera roll access

Is anyone developing anything with this? I'm concerned if I use images/videos from the camera roll without saving to the bundle that if the user messes with their image library all the album creation and fancy indexing (as a generic example) of the images will end up with missing media from said albums etc. Is it practical to save to ...

Detect Tap on CalloutBubble in MKAnnotationView

Hello! Im working with MKMapView and MKAnnotationView. I have an annotation in the map. When the users tap on it, the callOut Bubble is displayed. When the annotation is tapped again ( and the callOut Bubble is visible ) i need to change to another view. ¿How can i detect the second tap, or the tap in the bubble? Thanks in advice. ...

Having Android WebView detect and popup email dialog or phone call dialog

On the android, when the built in browser comes across an email or a phone number and it is pressed, a dialog box comes up for each. However, if i navigate to that url inside my Application's webview, this no longer is the case. Is there anyway for my webview to exhibit the same properties as the browser application in detecting email...

Apache Log analys tools with good reporting of Phone Platform etc.

I'm looking for an alternative to Google Analytics as I have a need to see IP address data. I'd prefer be using an open source package hosted on my own linux servers. Historically, I have used Analog for this purpose, but I'd love to hear what others are doing. The main requirements are: (a) access broken down by site and hours (b) ...

synchronize/share one application on several android phones

Here is my issue : I have 2 phones and I don't want to pay twice for an application on the market. Is there a way to share an application I have downloaded and payed for, once, onto the other phone? ...

Android - detect phone unlock event, not screen on

Is there a way to detect when a user unlocks the phone? I know about ACTION_SCREEN_ON and ACTION_SCREEN_OFF, but these seem to be fired when the screen switches on/off on pressing the power button, but not actually when the phone gets unlocked on pressing the Menu button... Edit: I am trying to detect the unlock/lock while an activity i...