A telephone, or phone, is a telecommunications device that permits two or more users to conduct a conversation when they are not in the same vicinity of each other to be heard directly.

learn more… | top users | synonyms

16
votes
4answers
6k views

URL Scheme for Phone Call

Much like the "mailto" URL prefix launches the user's default mail program and starts a new email with specified address, is there a similar URL scheme that would initiate a phone call? Perhaps ...
15
votes
8answers
3k views

Is it worth purchasing Google Android Dev phone?

I've been intrigued by all the android world since I first learned about it and would like to get my hands dirty developing for it. The question that comes to mind is if it's worth buying the unlocked ...
14
votes
3answers
7k views

Are the 4 Android buttons standard? Ex. back button, menu button

Are the physical buttons that Android phones come with standard? Specifically the back, menu, home, and search button? In my applications I assume everyone has a back button so I don't bother putting ...
12
votes
4answers
7k views

Android app for phone and tablet: 1 or 2 apps?

I have to develop an application for both Android phones as tablets. The application logic is the same, while the UI is completely different. I'm wondering how I should deal with this: make 1 big app ...
11
votes
10answers
3k views

Phone Number Columns in a Database

In the last 3 companies I've worked at, the phone number columns are of type varchar(n). The reason being that they might want to store extensions (ext. 333). But in every case, the "-" characters are ...
11
votes
4answers
3k views

Technology behind twilio [closed]

I wanted to discuss the technology behind Twilio. I have been playing around with the service for a few days now and it is simply mind-blowing. While I don't have a direct need for it right now, I am ...
11
votes
2answers
12k views

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, ...
10
votes
6answers
4k views

Phone number format and validation library [closed]

This question asking for a phone number format API in Java got me wondering why such an API doesn't seem to exist. Given the number of validation classes available under Apache Commons, I would have ...
10
votes
2answers
592 views

Can you detect whether a device has phone capabilities (e.g. it can make voice calls/SMS) with JavaScript?

Is there any way to detect whether a mobile device is capable of making voice calls / SMS messages? This is important when applying tel: and sms: links in a web page. It is not enough to merely ...
9
votes
2answers
5k views

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 ...
9
votes
11answers
14k views

Web based API that can tell me if a number is a landline or cell phone?

My application sends SMS messages to people, but the numbers entered in as their cell phone are sometimes land lines (this is user error or the user not really knowing if the contact number they have ...
9
votes
5answers
2k views

After orientation change buttons on a widget are not responding [duplicate]

Possible Duplicate: After orientation change buttons on a widget are not responding Hello I'm facing a problem with an appwidget that has one ImageView inside the xml layout for which I ...
9
votes
5answers
11k views

Is there a list of screen resolutions for all Android based phones and tablets?

If not, is there a list of screen resolutions for the most popular Android phones and tablets.
8
votes
1answer
4k views

Silverlight Rotate & Scale a bitmap image to fit within rectangle without cropping

I need to rotate a WriteableBitmap and scale it down or up before it gets cropped. My current code will rotate but will crop the edges if the height is larger then the width. I assume I need to ...
8
votes
3answers
2k views

Android — How does Google+ instant upload work?

I was playing around with the new Google+ application on the Android and I had a technical question that I couldn't seem to find online. How does the instant upload hook into the native camera ...
8
votes
6answers
214 views

Android How to make a call that includes “#” or “p” in the dial?

I need to make calls in my Android app that includes "#" or "p" in the dial. If I use the next code: Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:629941945#22412")); ...
7
votes
4answers
17k views

jQuery Phone number format [closed]

I am pulling in a phone number from a JSON file. It come in looking like: 2124771000 I need to format it: 212-477-1000 As HTML it looks like this: <p class="phone">2124771000</p> ...
7
votes
1answer
1k views

How to programmatically copy/paste in windows phone? [duplicate]

Possible Duplicate: Can the new WP7 cut and paste functionality be used programatically? Is there a way to programmatically copy/paste text in windows phone. I want the user to click on a ...
7
votes
5answers
1k views

Web GUI frameworks for Phone development

I looked already and could't find anyting good. So a question is, are there any good web frameworks that would allow to easily develop GUI for the majority of high end phones? By this I mean It ...
7
votes
4answers
6k views

How to get Cell Tower Info on a Windows Mobile CDMA Phone

Tools/Env.: C++, VS2008, WM6.1 I currently only have the HTC Diamond Windows Mobile phone available for testing and try as I may, with all of my hacking prowess, I still cannot accomplish the task ...
7
votes
3answers
1k views

How do I lock screen orientation for phone, but not for tablet? (Android)

I have been working on a Android project, that is intended to be compatible with both the Android phones and tablets. On the tablet the app is working great and looks good too. However, on the phone ...
7
votes
9answers
4k views

Debugging j2me on a Device

Has anybody had any success ever attaching a debugger to a tethered device? I am able to debug my j2me application in the emulator, but have a lot of trouble sorting out phone-specific problems when ...
7
votes
1answer
1k views

UIElement to image file (WP7)

I have a StackPanel which includes a few Rectangles that I want put to an image file (e.g. PNG). I'm developing this on Windows Phone 7 and most of the information I found on the internet wasn't ...
7
votes
1answer
1k views

Detect Tap on CalloutBubble in MKAnnotationView

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

Programmatically reject a call on the BlackBerry

I'm trying to programmatically reject a call on a BlackBerry, with Java + JDE. I'm intercepting the callIncoming event, and in there I need to do something to reject a call from a specific number. ...
7
votes
1answer
275 views

How can I see if tel: is actually linked to a device that can make a call?

I'm currently on a project that needs to detect whether or not a device can make a phone call. Depending on whether or not it can, I need to switch views and apply two different functions, one is a ...
6
votes
4answers
7k views

codeigniter form validation with phone numbers

What's a good way to validate phone numbers being input in codeigniter? It's my first time writing an app, and I don't really understand regex at all... Is it easier to have three input fields for ...
6
votes
8answers
5k views

What rules would you use to validate an Australian Phone Number?

What can I do to comprehensively validate an Australian Phone Number? I need this for an application I'm writing. You can assume it is dialed from within Australia. I want to use a white-list ...
6
votes
3answers
2k views

how to make call from pc using local landline phone services

I have a desktop application of address diary, developed in C# .Net. I want to make call from software throw land line phone service, in my office we have 8 phone lines, so i want to select line ...
6
votes
1answer
4k views

Integrating Lync 2010 with an external program

How can I integrate Lync 2010, with a program that does a DB look up and shows a small popup, with the information found, and also a few buttons with some options. The program is already running with ...
6
votes
2answers
5k views

Exception reading Wifi/3G State

Hi I have the following codes that reads Network/Wifi state: public String getMacAddress() { WifiManager wm = (WifiManager) context .getSystemService(Context.WIFI_SERVICE); return ...
6
votes
4answers
7k views

How to access a specific item in a Listbox with DataTemplate?

Hi :) I have a ListBox including an ItemTemplate with 2 StackPanels. There is a TextBox in the second StackPanel i want to access. (Change it's visibility to true and accept user input) The trigger ...
6
votes
3answers
2k views

How can I run multiple instances of the windows phone 7 emulator at the same time?

I'm creating a multiplayer game for windows phone 7. How can I run multiple instances of the emulator in order to debug it?
6
votes
4answers
2k views

How to use a global Style in Windows Phone 7?

I want to use a global Style in WP7, something like: <Style TargetType="Button"> //some code here </Style> The problem is that this code does not seem to work in WP7. I know how to add ...
6
votes
4answers
5k views

How to get phone name in Android

Is there any way to get phone name in android??. I have tried android.os.Build.DEVICE; android.os.Build.MODEL; android.os.Build.PRODUCT; in Samsung Galaxy S.All these are giving GT-19000 as the ...
6
votes
2answers
3k views

API to support Bluetooth in Mango? [closed]

Will there be an API in the upcoming Mango that provides access to devices coupled via Bluetooth? I am interested in processing data sent from Polar Hear Rate Monitoring belt. Kind regards, Stefan
5
votes
3answers
2k views

Windows Phone 7 buttons

Is it just me or the property Visibility.Hidden on buttons are not included in Windows Phone 7? Because as far as I know there are three types of Visibility properties for a control, either Visible, ...
5
votes
2answers
6k views

android internal phone storage

how can you retrieve yours phone internal storage from an app? I found memoryinfo, but it seems that returns information on how much memory your currently running tasks. I am trying to get my app to ...
5
votes
2answers
2k views

Php mobile/tablet/desktop detect?

How to detect with php, if the user use a desktop, mobile or a tablet?
5
votes
2answers
558 views

How well does knowledge of J2ME generalize to other mobile platforms?

I'm considering taking mobile phone software development course at my university. The course uses J2ME with an emulator. I'm interested in software development for mobile phones, but I get the ...
5
votes
1answer
5k views

iPhone Safari making a phone call

Is there something I can put in the code for an HTML page I am making for Safari on iPhone to make a call when clicked on? Something similar to: <a href="tel://1300111222">click to ...
5
votes
2answers
3k views

Xaml cannot create an instance of “X”

I am trying to create a Settings page for my app in Windows Phone 7. I created the AppSettings class and is referring it from my MainPage.xaml. This is my code: <phone:PhoneApplicationPage ...
5
votes
3answers
4k views

How to access the database when developing on Android phone?

I am having trouble accessing the database while I am developing on the phone. Whenever I execute cd /data/data/com.mycompck/databases and then run ls I get: "opendir failed, Permission denied" Or ...
5
votes
1answer
63 views

Can anyone help me understand threading for my program?

I asked for help from you guys on a program, and it seems it will work. if I can get threading/asynctask to work. I tried to work on threading already and I didn't get it to work. The reason why I am ...
5
votes
4answers
156 views

US phone numbers

I'm building an app that uses phone numbers to perform different tasks, and recently I've had quite a few requests to implement it for the US market. Unfortunately as I live in the UK I don't have ...
5
votes
1answer
5k views

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 ...
5
votes
2answers
351 views

How can compose messages without using launcher and chooser in wp7?

I use SmsComposeTask for composing sms in wp7. but in my application i want to send messages directly without using SmsComposeTask so please tell me how can i send sms without using SmsComposeTask? ...
5
votes
1answer
1k views

Flurry analytics crashing with Windows Phone 7

I've integrated Flurry (http://www.flurry.com/) into my phone 7 app. The only code needed is this line in application launching FlurryWP7SDK.Api.StartSession(ApiKeyValue); However, as soon as that ...
5
votes
3answers
332 views

Using App.Current.Terminate() method in Windows phone 8

As windows phone 8 provides us with this method for programmatically terminate an app, will there be any issue while app submission if we use this in app for terminating a page while there is no ...
5
votes
1answer
465 views

How can I hide/cancel the default incoming screen

I am currently intercepting a call and forwarding it to my customized "oncallscreen" activity. However, before getting to my screen it will flash to the default "oncallscreen". How can I hide/cancel ...

1 2 3 4 5 28