smartphone

Facebook page automatic “like” URL (for QR Code)

一个人想着一个人 提交于 2019-11-28 21:39:09
问题 I was wondering if one could construct a URL for automatically liking a Facebook page. Then this URL could be converted to a QR Code so people can automatically "like" your page by reading it with their smartphone. I have been searching a lot, but all I could find so far are commercial services like Spotlike, Likify, Social QR Code etc. I don't want a solution that relies on such commercial services. I am starting to suspect that Facebook has not enabled this possibility for understandable

Where to begin with Smartphone Web Development?

霸气de小男生 提交于 2019-11-28 18:11:20
问题 Ha all, So I've been taksed with developing a smartphone website for our property portal and first thing I did was see what lessons others had to tell online but I've found very little. I'm not building an app, I'm building a website and I'm looking for do's and don't with regards to html, css, widths/heights approaches, javascript (is jquery going to play nice on all platforms?) and anything else that relvant to this kind of platform. Looking around at others I like http://mobile

custom dialog with a text field in winmobile

旧城冷巷雨未停 提交于 2019-11-28 13:50:25
I'm looking to have a simple custom dialog box, like a message box, that has a label and a TextBox. If there's a simple way to do this, sorry! I'm really not well versed in the dialog stuff. Thanks for any help, guys! Here is how to make a small custom dialog box in Windows Mobile that looks like this: alt text http://www.freeimagehosting.net/uploads/b8fb5421d6.jpg Add a form to your project, and set its FormBorderStyle property to None. This allows the form to be resized and positioned, but also means it has no border or titlebar, and there's no way for the user to move it. So you have to

custom dialog with a text field in winmobile

[亡魂溺海] 提交于 2019-11-27 08:09:12
问题 I'm looking to have a simple custom dialog box, like a message box, that has a label and a TextBox. If there's a simple way to do this, sorry! I'm really not well versed in the dialog stuff. Thanks for any help, guys! 回答1: Here is how to make a small custom dialog box in Windows Mobile that looks like this: alt text http://www.freeimagehosting.net/uploads/b8fb5421d6.jpg Add a form to your project, and set its FormBorderStyle property to None. This allows the form to be resized and positioned,

Simple Smart Phone detection

醉酒当歌 提交于 2019-11-27 04:42:57
问题 Ok I've seen a couple of mobile detection scripts that look to identify all mobile handsets, anyone come up with a simple Smart Phone detection script? I'm using the jQueryMobile framework and wanted to theme based on device, Am I going about this the wrong way or are there any tips one could give? What defines a Smart Phone? What I've seen but I think are way to complex for smartphone detection: HDAPI Zend UserAgent PHP get_browser() WURFL PHP API PHP Lightweight Mobile Detection I like this

JavaScript memory and HTML5 LocalStorage limitations on smartphones

ぃ、小莉子 提交于 2019-11-27 00:52:21
问题 I'm going to develop web application which should work on mobile devices (smartphones). In the application the operator will input some business data, and the operator will type this data also in closed spaces, where network signal can be unavailable. So, there is a need for offline mode . In such mode operator can input data, which will be stored on browser side, and after the network becomes available, the data will be send to the server and persisted in database. I've found out 2 possible

android camera surfaceview orientation

蓝咒 提交于 2019-11-26 15:01:57
Ok so I have a class that extends SurfaceView and overrides surfaceChanged - just calls startPreview surfaceCreated - opens camera, edits params *, sets surfaceHolder surfaceDestroyed - calls stopPreview, release camera this all work great because when the orientation is Portrait: from surfaceCreated * m_camera = Camera.open(); Camera.Parameters p = m_camera.getParameters(); if (getResources().getConfiguration().orientation != Configuration.ORIENTATION_LANDSCAPE) { p.set("orientation", "portrait"); // CameraApi is a wrapper to check for backwards compatibility if (CameraApi

android camera surfaceview orientation

◇◆丶佛笑我妖孽 提交于 2019-11-26 04:07:49
问题 Ok so I have a class that extends SurfaceView and overrides surfaceChanged - just calls startPreview surfaceCreated - opens camera, edits params *, sets surfaceHolder surfaceDestroyed - calls stopPreview, release camera this all work great because when the orientation is Portrait: from surfaceCreated * m_camera = Camera.open(); Camera.Parameters p = m_camera.getParameters(); if (getResources().getConfiguration().orientation != Configuration.ORIENTATION_LANDSCAPE) { p.set(\"orientation\", \