tablet

can a C# windows application be run on a windows 8 based tablet well?

烈酒焚心 提交于 2019-12-08 05:50:58
问题 Recently I was asked to work on a project which was developed for an aviculture company. The client asked if I can make the application which was being developed in C#, to work on a tablet. So i want to know if i finish the application in c# normally Will I be able to: 1.Use the mono for android and compile the whole project with that and get an android app easily for being used in android devices? 2.Use the executable project on a Windows 8 tablet without any changes? I would be grateful if

Tablet's scaling my web page by 1.5x causing layout issues

空扰寡人 提交于 2019-12-08 05:12:55
问题 So I have a web app that looks perfectly fine at 1024x768 pixels on a laptop (I really don't care about phone at the moment). However, when I take the same app onto a tablet it doesn't fit even though the pixel availability is way higher than 1024x768. It turns out that the tablets are scaling my app so it uses a 1.5 x css pixel multiplier causing it to be much larger on the tablets. I have the following in my html head: <meta name="viewport" content="width=device-width, initial-scale=1.0">

Android/ListView : Select first item after loading datas

不问归期 提交于 2019-12-07 23:29:16
问题 EDIT I must tell you that my ListView is populate by an AsyncTask. The code below works fine when I do in onPostExecute method : synchronized (mListView) { if(mFeeds==null || mFeeds.size()==0){ Utils.Log("mFeeds empty"); _this.setListShown(false); }else{ Utils.Log("mFeeds Full"); _this.setListShown(true); mListView.setAdapter(new ListFeedsAdapter(mActivity,mFeeds)); mListView.notifyAll(); NewsFeedsDetailViewPagerFragment fragment = (NewsFeedsDetailViewPagerFragment) getFragmentManager()

Youtube API setvolume not working on iOS?

我们两清 提交于 2019-12-07 17:28:12
问题 I have built a chromeless youtube player in a webpage, using the iframe API from the youtube dev site. Everything works like a charm, except when I view my page on an iPad or Android device, the video's volume and mute controls do not work. _player.mute() _player.setVolume(0); Strangely, the other controls DO work, for example: _player.pauseVideo(); _player.playVideo(); 回答1: It works, you just need to run it after player is ready and functioning. But on mobile devices, volume depends on the

My application is not listed for tablets

本小妞迷上赌 提交于 2019-12-07 16:45:58
问题 I have uploaded to play.google.com a new application: https://play.google.com/store/apps/details?id=development.nk.anguide The problem is that i can not install this application in a tablet. At optimization tips there is the following message: "Your APK needs to meet the following criteria: Any required hardware features are normally available on tablets." This is my manifest file: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"

How to deploy PhoneGap App to Android TABLET Market?

独自空忆成欢 提交于 2019-12-07 15:08:45
问题 I built a phonegap app that is simply an launcher to a website. You download the app, click on it, and it will open up your web browser at a specific url. People with android phones see this app in the Google Play market. People with Samsung Galaxy Tab do not see this app in the Google Play Market. How do I make this app accessible to people with Galaxy Tab? 回答1: On an extension to my comment, you may wanna look at this and this. 来源: https://stackoverflow.com/questions/11160871/how-to-deploy

VB6 on Windows 8 ARM based Tablets

瘦欲@ 提交于 2019-12-07 13:40:31
问题 With the announcement that VB6 will be supported on Windows 8, my question is: Is there any place where Microsoft has said (Yes or No) VB6 apps will run on the ARM based Tablets? And, if not, is there any ARM emulator, so we could test our VB6 apps on a Windows 8 ARM Tablet? 回答1: My understanding is: No. Windows 8 will support 2 different APIs: Win32 (and .NET on top of that) and WinRT. The Windows 8 ARM builds will only support WinRT. VB6 is compiled against the Win32 API, it won't work on

NDK debugging on the Tegra tablet

余生长醉 提交于 2019-12-07 13:35:02
问题 Today I purchased Android tablet for native development -- Acer Iconina Tab A500 (Honeycomb 3.1) powered with Tegra. Then I downloaded and installed Tegra Android Development Pack (Windows and Mac) from from http://developer.nvidia.com/tegra-android-development-pack. Of course I turned on 'USB debugging' in the Application settings. I tried to debug sample apps (like es2_globe) by 'Debug As -> Android NDK Application' menu command but after building -- nothing happens. Application does not

WPF .NET app crashes, ComboBox and Menu events not fired on Tablets with Windows 10 Creators Update, .NET 4.7 or KB4034658

混江龙づ霸主 提交于 2019-12-07 13:31:39
问题 When I click shaky/nervous/hammering with the pen on the ComboBox, click on the items, move the pen while clicking... after 5 or 10 minutes the control stops working. Then I can open the ComboBox, can click on an item, the item gets highlighted, but nothing happens: The ComboBox does not close and no click event gets fired. The same error happens with a ContextMenu. And when the error occurs then all ComboBoxes and all menus does not work anymore. It occurs when i click with the pen or with

how to make style sheet for tablet and iphone

一世执手 提交于 2019-12-07 11:53:44
问题 I was thinking the link target on the stylesheet would make my css file only load when it loads on a tablet or iphone. But the elements I'm trying to hide are still there. Im currently using (media="handheld") <link rel="stylesheet" type="text/css" hrf="css/media.css" media="handheld" /> 回答1: There are too many mobile device models out there to write stylesheets for; you'd be better off adjusting your CSS based on Screen Size . This is especially helpful for targeting Android Tablets which