smartphone

Approach to developing mobile application that supports a web application

。_饼干妹妹 提交于 2019-12-21 06:45:07
问题 My company built its own project management web application. It's like basecamp on steroids. The core features of this application are: create task lists assign tasks to team members track hours against task items I am looking to build mobile application(s) as an extension to the web application. The mobile applications(s) must: reproduce the features mentioned above connect to the same database as the web application retain drag drop capabilities provide a rich user experience equivalent to

Recording stereo audio with a Motorola Moto G (or Moto X)

会有一股神秘感。 提交于 2019-12-19 03:42:29
问题 I hope someone could help me with this issue. Some time ago I developed an application in order to record simultaneously the sound captured by the front mic and the back one in a smartphone. Basically, I make the next object like this: AudioRecord audioRecord = new AudioRecord( MediaRecorder.AudioSource.CAMCORDER , frequency , AudioFormat.CHANNEL_IN_STEREO , audio encoding , buffer size ); It worked perfectly for a Sony Xperia Neo V but not for a Motorola Moto G (or Moto X I guess). Taking a

how to detect whether request is coming from browser or smartphone? [duplicate]

人盡茶涼 提交于 2019-12-14 03:28:10
问题 This question already has answers here : Detecting Device Type in a web application (7 answers) Closed 6 years ago . I am having a web application , which works fine . now there is a particular page which gets bulky when i access the application from smartphone browser , so I wanted a situation like if(request comes from computer browser client ) forward to bulky page in web application else if (request comes from smartphone ) forward to some other light page . please put your suggestion how

Using self developed Bada application for own smartphones

杀马特。学长 韩版系。学妹 提交于 2019-12-12 05:07:38
问题 Hello Stackoverflow Community. I'm doing some research about the most common operating Systems for Smartphones and the license (signing) conditions for developing . At the moment i have some trouble with getting the needed informations about the Bada OS. The Situation: Let's say I have 10 Bada Smartphones and developed an App for them. Is it possible to install it directly on the phones (Like the apk File in Android)? If yes, are there any Restrictions like developer signing (36 month license

iphone (smartphones) css RWD rendering not working

百般思念 提交于 2019-12-12 01:56:06
问题 I made my site responsive using media queries and tested it by resizing my browser and it works fine. I also used a website to see how my page would render on apple devices, specifically iPhones, and the RWD worked. But when I looked at my site on an actual iPhones, or any other smartphone for that matter, it shows the page in "desktop mode"(i.e. not rendered with the media queries). Can someone please explain to me why this is? Sorry I don't have an example but I figured it's a common

Alternative and Best ways to format SQL query for phone alert messages

谁说我不能喝 提交于 2019-12-11 18:53:38
问题 I'm creating an email alert that will most likely be routed to smart phones (either email or SMS) and be used to wake people up when we have production issues. Email is send with EXEC msdb.dbo.sp_send_dbmail and providing the @query parameter which executes a stored proc. Currently, the report looks something like this, and as you can see, when things wrap around and are not in a Courier font, they look horrible. What is the best way to format this? HTML emails instead with a table? Are there

jQuery mobile css scroll and click

强颜欢笑 提交于 2019-12-11 13:58:28
问题 I'm developing a mobile website for smartphones and using jquery mobile. first test: http://pastehtml.com/view/bq51kpbmm.html I have added the content to the page, so it should be scrollable, but when I'm scrolling the header and footer will be disable for the scroll time. :( second test: http://pastehtml.com/view/bq51nmk7i.html The jquery mobile documentation (http://jquerymobile.com/test/docs/toolbars/bars-fixed.html) gives me the information that data-position="fixed" should disable hiding

Installing android mobile apps on android TV

ぃ、小莉子 提交于 2019-12-11 08:06:23
问题 Just a quick question for i can't find proper answer to. I have developed android app for tablet and Mobile device, is it possible to install this app on Android Smart TV? If yes than What issues i can possibly run into?pixels? image distortion? or will it run properly or not at all. Thanks. 回答1: Perhaps the single most important thing in your manifest would be <manifest> <uses-feature android:name="android.hardware.touchscreen" android:required="false" /> ... </manifest> to allow the APK to

How to disable the 'save image as' popup for smartphones for <input>

坚强是说给别人听的谎言 提交于 2019-12-10 16:09:08
问题 On a webpage I made I use the input tag with as source an image. When the button is pressed too long on smartphones there is a popup window with "save as" etc. I searched for options to stop this from happening as buttons need to be kept pressed down by the user because it's a kind of game. I already put these commands in the CSS tag on input but there still appear popups: -webkit-touch-callout:none; -moz-user-select: none; -ms-user-select: none; -webkit-user-select:none; I can't use pointer

How to manipulate audio channels volume with AudioTrack.setVolume after API 21

谁都会走 提交于 2019-12-10 15:29:50
问题 I'm trying to reproduce a mono wav file over just one of the stereo channels (speakers) that my smartphone has. I used to control this with AudioTrack.setStereoVolume (float leftGain, float rightGain) by setting one of these gains to zero. Reviewing an old code I got a deprecated method warning and after checking Android SDK documentation I've found it is now done by : public int setVolume (float gain) Added in API level 21. This API is preferred over setStereoVolume(float, float), as it more