tablet

How to run a C# program in kiosk mode? [closed]

折月煮酒 提交于 2019-11-28 09:34:33
I have a c# and WPF program which i want to install on a windows tablet, i want my program to be the only program running on the tablet, it should start running automatically right when the user will turn on the tablet. Any solution? Never use windows original kiosk mode - it useless. Use shell replacing. To configure Windows kiosk mode you need next steps: Create user for kiosk mode Set next registry key for this user as path to your application: Windows XP/7: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Winlogon] "Shell"="C:\\full\\path

Download using jsPDF on a mobile devices

試著忘記壹切 提交于 2019-11-28 07:11:51
问题 I have a page that includes a download button using jsPDF. On desktop machines it downloads the page as it should. However, pdf.save() does not work on my tablet or phone. I tried to add a special case for mobile devices to open the PDF in a new window, since mobile devices don't download things the same as desktops, with the idea being that once the PDF is open in a new window the user can choose to save it manually. var pdf = new jsPDF('p', 'pt', 'letter'); var specialElementHandlers = { '

How to ensure an Android app can only be run on a tablet?

孤者浪人 提交于 2019-11-28 05:10:00
问题 My Android app is specifically designed for tablet, and I do not want it to run on mobile phones. How to ensure the app can only be run on a tablet ? Thanks. 回答1: <supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="false" android:xlargeScreens="true"/> 回答2: Other question got linked as a duplicate, so here is the alternative answer: Yes go into the android market publisher page. Make sure your app is uploaded. Click on your app name. Scroll down

Running AMP (apache mysql php) on Android [closed]

China☆狼群 提交于 2019-11-28 04:29:06
I currently work on an open source e-commerce platform (www.oscmax.com) and I am trying to work out if I can deploy an offline version that can run on an tablet. I was hoping to use an iPad but this has proved very difficult (impossible?) a) Does anyone know of an AMP (apache mysql php) version that will run on a tablet - eg. Android? The idea is to have a local version of the online store that sales reps can use when selling to wholesale customers that will store the orders locally until they find a WiFi or 3G signal at which point it will merge the new records into the webserver. If I could

prevent tablet downloads of app

不羁岁月 提交于 2019-11-28 01:24:17
问题 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

Hide Tablet system bar

♀尐吖头ヾ 提交于 2019-11-27 22:13:05
I want to hide system bar for tablet device. I searched a lot but not succeed. I added image for it. I found some solution like View v = findViewById(R.id.view_id); v.setSystemUiVisibility(View.STATUS_BAR_HIDDEN); but I dont know how to use it And I know that is possible as http://forum.xda-developers.com/showthread.php?t=1228046 Can any one know how to do this ? Code snippet to show/hide status bar on rooted android tablets To hide: Process proc = null; String ProcID = "79"; //HONEYCOMB AND OLDER if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH){ ProcID = "42"; //ICS AND

Android ADB doesn't see device

北慕城南 提交于 2019-11-27 21:57:01
I'm trying to run my applications on OMEGA T107 tablet. But adb doesn't see my device. I tried almost everything. I tried all the ways listed on the web for a whole day, but I didn't get any solutions. Then, I followed a link and in just two minutes my problem was solved! By the way, it's for Windows users! Find out the vendor id of the device from device manager. To do this, connect the OTG port to the USB port of your computer. Go to Start Menu and right-click on “My Computer” and chose “Properties”. Select the “Devices” option which will open “Device Manager”. Select your device (mostly in

Detect virtual keyboard vs. hardware keyboard

只愿长相守 提交于 2019-11-27 19:39:09
I have been thinking about this a while now, and I can't figure a way to deal with it. Is there any way to detect if the user uses a virtual (software) keyboard or a traditional (hardware) keyboard? The new Windows Surface has its own keyboard in the cover, and for Android / iPad there are a ton of different bluetooth keyboards. So, do any of you have any input about this? I'm aiming for Android, IOS & Windows Tablet/Phone. Motivation: (very subjective) When developing web applications for tablet/smartphone I have come to the understanding that it's easier - in many situations - to use a

How to include 10“ and 7” layouts properly

≡放荡痞女 提交于 2019-11-27 17:06:47
Nexus 7: 7" 1280x800 Galaxy tab 10.1 10" 1280x800 I want my app to run on 7 and 10 inch tablets. As far as I know, I have to include these layout folders in my app: for 7 inch tablets layout-sw600dp layout-sw600dp-port for 10 inch tablets layout-sw720dp layout-sw720dp-port It runs fine on the nexus 7, but loads the sw600dp layouts on the 10" tablet. If I include these default folders: layout layout-port 10" galaxy tab loads layouts from these. If I only include the default layout folders and the sw600dp one, it crashes on the nexus7. How am I supposed to support phones, 7" tablets and 10"

Android Printing API on Galaxy Tab

邮差的信 提交于 2019-11-27 14:10:57
I would like to add wireless printing to my android 2.2 application which is targeted for the Galaxy tablet. I see that the internet browser has a print option so I am assuming that an activity hook must exist, and I was hoping that someone has figured this out. I have found a possibility using the PrinterShare application from Mobile Dynamix, but my preference would be to no require a 3rd party. Here is the code example that they provide, just for reference. Intent i = new Intent(Intent.ACTION_VIEW); i.setPackage("com.dynamixsoftware.printershare"); i.setDataAndType(data_uri, data_type);