tablet

Disable aspnet.friendlyurl's mobile redirect for tablets

Deadly 提交于 2019-11-29 11:29:17
问题 My Website is responsive with Twitter Bootstrap and the desktop pages are designed for tablets and desktop. aspnet.friendlyUrls considers tablet devices as mobile and sends them to the ".Mobile.aspx" equivalent. How can I disable this behavior and keep tablets on the desktop pages? 2 Weeks later and still no awnser or even a comment? Am i the only one who actually uses aspnet.FriendlyUrls even if it's distributed in new VS2013 Asp.Net projects by default? 回答1: There is no setting to turn this

Disable all page-zooming in IE11 on Windows8-Arm

ⅰ亾dé卋堺 提交于 2019-11-29 10:09:48
How can I disable ALL viewport zooming for a webpage accessed via IE11 on WinRT? I'm working on an application that does it's own drawing on a canvas sized to fit the viewport, and provides it's own zoom functionality internally. Having the browser zoom then makes a mess of the canvas. I've been going through existing answers, and none of them seem to work for this plaform: <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/> or <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"> or <meta

Jquery hover function and click through on tablet

感情迁移 提交于 2019-11-29 08:51:32
I have a jquery slideshow that that uses a navigation list to switch out the slideshow images. How it works is when you hover over the nav list it highlights ('.active') and the associated image switches to that. There are links inside the nav list which can also be clicked to go to a different page. I need this to work on a tablet so that when the person taps the nav list, it becomes active, then the image slideshow switches, then if you tap again it follows through to that link. Right now what is happening is that as soon as you tap it, it becomes active AND clicks through. Here's the jquery

prevent tablet downloads of app

末鹿安然 提交于 2019-11-29 08:00:23
I have recently been looking at the breakdown of one of my apps on ANdroid Market, and was surprised to see that a number of downloaders were using Galaxy Tabs and a few other tablets to use my app. Now, I'm a little worried, because when designing the app I didn't take into account larger screen sizes, so the bitmaps I used on the Canvas are all suitable for phone sizes but are way too small for tablets (I'm thinking of the background bitmaps which will cover about 1/4 of the Galaxy Tab's screen. The thought of people using my app like this is making me feel a little unnerved. So my question

Issue with tablet detection Synchro Digital

被刻印的时光 ゝ 提交于 2019-11-29 05:16:28
My colleague and I have to develop and implement an application on an Android tablet for a company. We started and almost completed the development of the application in question using the Eclipse AVD (we hadn't recieved the tablet yet) and it works perfectly. We received the tablet on which the application must be installed, the model: SynchroDigital INOSOP10-4.0 RES, 10" with ICS, less than 100 €, the really cheap one. Our problem: my PC doesn't recognize the tablet (WIN7, unable to install drivers when connecting, although I've already successfully developed on Galaxy S and Galaxy Tab). I

Block all means to close an android application

前提是你 提交于 2019-11-29 03:02:18
问题 I'm trying to develop an application for an android tablet. This tablet will be shown to the public and they can touch it. I want to block all means to close the app except for a button/preference menu that requires a password. But after some research I am not sure if this is possible. Long press on power button still works, home button too and return button. Will this work? if so how? 回答1: you can find all the answers in already asked questions in stackoverflow Home Button Return Button

Touch API (e.g. touchstart) not working in MS Edge

心不动则不痛 提交于 2019-11-29 02:28:13
问题 my application is using the Touch API to detect touch events in JavaScript. Example: $(".element").on("touchstart", function(event){ alert("TRUE"); }); This works on any touch device with any browser like Android or iOS, however it doesn't work in MS Edge on a Windows 10 Tablet with or without conntected keyboard. The API seems to be supported: Compatibility list. However, I've tested: 'ontouchstart' in window and this returns false on this device. Furthermore mousedown seems to get fired.

Android App for Tablets still showing “Designed for Phones”

∥☆過路亽.° 提交于 2019-11-29 01:42:20
问题 I published an app (http://bit.ly/1GfKsNG) which is meant to be for tablets only. The AndroidManifest.xml is adjusted in the way: <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21"/> <supports-screens android:xlargeScreens="true" android:largeScreens="true" android:normalScreens="false" android:smallScreens="false"/> and in Google Play, I also only added tablets screenshots (7" and 10") and no smartphone screenshots for the app. Still, the app shows "Designed for Phones" in

Is possible install Eclipse IDE in a Galaxy Tab?

二次信任 提交于 2019-11-28 22:40:58
Since Eclipse can run in Linux and this tablet has the new Honeycomb (Linux Kernel), can Eclipse IDE run in Android Honeycomb ? I know that isn't pretty much comfortable coding in a tablet, but I'd want to use for UML modeling. Android (despite its Linux roots) is far from capable of running Eclipse IDE as is. Not only is the hardware inadequate for supporting such a large application, but Android lacks a full Java SE JVM (Dalvik is a subset) and SWT (Eclipse UI framework) implementation for native Android UI controls does not exist. On Linux, SWT implementations exist only for GTK and Motif.

Can’t use android:xlargeScreens=“true”?

主宰稳场 提交于 2019-11-28 13:18:25
I am making app for phones, but I wan’t them to be usable on tablets. I don’t know why can’t. I use this in my android manifest file: android:xlargeScreens="true" I get this error: error: No resource identifier found for attribute 'xlargeScreens' in package 'android' This is my manifest file: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="cro.perger.bonbon" android:versionCode="5" android:versionName="1.4"> <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="11" /> <application android:icon="@drawable/icon" android