mobile-phones

Is it possible to develop for the iPhone without an iPhone?

浪尽此生 提交于 2019-12-17 18:51:56
问题 I know there are emulators, but is this good enough? If someone is serious about iPhone development, do they absolutely need an iPhone? 回答1: Just my personal opinion: if you're serious it means that you're committed to quality of your product. If you're committed to quality there is no way to deliver a product without actually launching it on the target platform :) As noted in other posts you'll have tough time testing the multi-touch screen and other aspects of the hardware on your emulator.

How to get started with Symbian (S60 plattorm)

一曲冷凌霜 提交于 2019-12-17 17:47:11
问题 So at my new job one of the platforms we use is S60 (Nokia phones, Symbian OS) and I am getting curious about it, as well feeling the need to help the team a bit from time to time (I actually work on the server side of things for this software). So any good pointers/recommendations/tutorials and shared experiece that might put me in the right direction ? Thanks 回答1: These days, I think it is nearly impossible to begin native (meaning C++) Symbian software development. Nokia, Sony and Motorola

How to trigger a phone call when clicking a link in a web page on mobile phone

懵懂的女人 提交于 2019-12-17 05:21:49
问题 I need to build a web page for mobile devices. There's only one thing I still haven't figured out: how can I trigger a phone call through the click of text? Is there a special URL I could enter like the mailto: tag for emails? Device specific solution are not preferred. I know iPhone automatically recognizes phone numbers and creates a link for this, but it would be great if this could be done for images too... and also for most mobile devices. 回答1: Most modern devices support the tel: scheme

C# application to connect to a mobile application using bluetooth

感情迁移 提交于 2019-12-13 09:09:53
问题 I`m asking this question again as I got no answer for about a week now ... I want to know how to write a C# desktop application that can connect to the mobile version of the same application (that I will create). The desktop application will be used as a backup/restore for the mobile application. I want to know also how to write the mobile version (using C# if possible). 回答1: May i know, in what way you want to communicate with the mobile version of the application? Ideally the cross domain

C# application to connect to a mobile application using bluetooth

南笙酒味 提交于 2019-12-13 08:31:11
问题 I want to know how to write a C# desktop application that can connect to the mobile version of the same application (that I will create). The desktop application will be used as a backup/restore for the mobile application. I want to know also how to write the mobile version (using C# if possible). 回答1: From your other posts, it appears you are trying to write a Symbian 7 application to sync a proprietary data format with a custom Windows 7 desktop application. That is critical information to

PHP: how to create an regexp to preg_match() for PT Mobile phones?

回眸只為那壹抹淺笑 提交于 2019-12-13 03:02:31
问题 i'm newer related to Regexp on PHP ... I need to create an Regexp to filter Portuguese Mobile Phones, can anybody help me and explain how i do it? (To i understand it) Rules: The integer/string must have 9chars; The first char must be a '9'; The second one can be '1,2,3,6' (Chars are separeted by commas); The other chars must be in range of '0-9'; 回答1: #9[1236][0-9]{7}# That should do it ;) Explanation: # <-- delimiter 9 <-- 9 [1236] <-- either of the chars in the brackets [0-9]{7} <-- 0-9 7

How to design a website for mobile phone users?

拈花ヽ惹草 提交于 2019-12-11 18:04:42
问题 How can i start the development of a site that can be browse from mobile phones? For example, if i browse my website http://xavytech.com site from a browser it looks fine which is known by everyone... I am extending my website to browse through nokia mobile phones.. Where should i start? How to write css or should i recreate a new website for mobile phones? 回答1: The Sencha Project here was just announced that offers an HTML5 framework for mobile devices. It works well with Safari on iOS and

In mobile site Opera Mini select all the links of list items at once, any solution?

旧城冷巷雨未停 提交于 2019-12-11 07:56:07
问题 I'm making a mobile site for old mobile and testing on Nokia 5130 Xpress Music which has Opera Mini Browser. The problem is when I have links list on a web page opening in Opera Mini and I try to select one link of the list, but it select the all list items instead of single. Code of list <ul id="nav"> <li id="nav-1"><a href="#"><span>Nyheder</span></a></li> <li id="nav-2"><a href="#"><span>Kalender</span></a></li> <li id="nav-3"><a href="#"><span>Job</span></a></li> <li id="nav-4"><a href="#

JavaME, Implementing Peer to Peer communication

随声附和 提交于 2019-12-11 05:57:31
问题 I have 4 phones connected to a Wifi access point and I know the MAC/IP of all of these including the Wifi access point. I need to implement communication between each of these phones, a sort of peer to peer communication, I was thinking about using sockets but then each phone will have to implement a ServerSocket and Socket on each of the phones is this fine? The Ip's of these phones would be in private range 192.168.... so could I use something like http://192.168.xx.xx/port and contact any

How can I prevent Chrome from formatting a HTML5 format number

这一生的挚爱 提交于 2019-12-11 02:39:51
问题 I need to create a form for a mobile website in which people can enter a number with a decimal mark like 5.3. In order to make it easier for the visitors to enter the numbers, I want to force the smartphone to display the on-screen keyboard with the characters the user is most likely to enter. It's possible to show the numbers on-screen keyboard by adding the HTML5 type="number" input type. Unfortunately Google Chrome then starts to validate the input and allows only intergers to be entered.