tablet

can't find app on market

此生再无相见时 提交于 2019-12-01 10:34:56
问题 I installed manually the apk of my app on Asus Transform and it works fine, I deployed it on the market but i can't find it (I can find it with my Samsung Galaxy Ace), should I set something on my manifest? Thanks EDIT manifest.xml <activity android:name="Splash" android:label="@string/app_name" android:screenOrientation="portrait" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>

How to disable the little touch-keyboard on Windows edit controls

五迷三道 提交于 2019-12-01 10:03:27
问题 In a windows version with tablet support, a small keyboard icon appears when an edit control gets focus. If you touch it the touch keyboard pops up. Is there a way to disable this? It's rather inconvenient if you have your own touch keyboard. I want to disable it for certain edit controls in code, ie. I'm not looking for a Windows setting. Giel 回答1: Well, I guess a late answer is better than no answer, so here it comes: You can disable the Windows onscreen-keyboard for your application. To do

How to prevent a youtube iframe to redirect from Standalone App to Youtube App?

ぃ、小莉子 提交于 2019-12-01 08:16:00
问题 I have a web magazine developed in reveal js. Of course the user can decide to create a shortcut for his/her own smartphone or tablet, creating a standalone application, that's not opened in the normal browser, with url bar, navigation commands, etc.. And to do this, I use this code <!-- CAPABLE FOR APPLE DEVICES --> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" /> <meta name="apple-mobile-web-app-title" content="

Different GUI on phone and tablet, but same app

拜拜、爱过 提交于 2019-12-01 07:32:18
I have to write an app for tablet and for phones too. The two app has the same functionality, but they have absolute different GUI. For example the phone have 2 button on the main screen, but the tablet going to have 5, because we would like to use the space what we have. I know, I˜m able to define different layouts, depends on dpi, but how should I handle the layout-s in the Activiies? I think, to use if(sdkVersion >=11) bla..bla... is not will works through the hole code and the hole project! Is this the situation where I have to use multiple application support ? readed articles: http:/

4x4 appwidgets are detected as 3x3 on tablets

拟墨画扇 提交于 2019-12-01 06:41:29
I create an 4x4 appwidget with minWidth and minHeight set to "250dp" as it is suggested in App Widget Design Guidelines: http://developer.android.com/guide/practices/ui_guidelines/widget_design.html It is ok on every phones and phone-sized emulator I have tried but if I test it on a tablet (Xoom or Nexus 7) or on an emulator (resolution: 1280x752 with dpi 160) then the launcher detects it as 3x3 widget. What am I doing wrong? Thanks, Tamas Try grid size = (74*n) - 2 for older api level. This value come from old document. 来源: https://stackoverflow.com/questions/11868015/4x4-appwidgets-are

onclick event is not working on ipad and tablet

≯℡__Kan透↙ 提交于 2019-12-01 06:24:31
onClick event not working on tablet,ipad? it is perfectly working on Pc browser but not working for touch events , i tried .binding(),.on() and many thing but they are not giving 100% result. How can I make it work on ipad , tablet?? <div id="id1" alt='div1' class="sliderImage" width="300" height="360" onclick="" style="visibility:hidden;background-image:url('img/img1.jpg'); border:solid; border-color: black;">You've styled the div to have a set width of 100px. At a reasonable font size, that's too much text to fit in 100px. Without doing anything, </div> <div id="id2" alt='div2' class=

How to know whether its a tablet or phone in android programmatically? [duplicate]

守給你的承諾、 提交于 2019-12-01 06:20:36
问题 This question already has answers here : Tablet or Phone - Android (30 answers) Closed 5 years ago . I would like to get to detect whether the given device is a tablet or phone in android.I have tried the two in the simulator but none worked. Both are here: First if ((getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_LARGE) { //code } Second private boolean isTabletDevice() { if (android.os.Build.VERSION.SDK_INT >= 11) {

Android - detect small tablet vs big phone?

丶灬走出姿态 提交于 2019-12-01 06:19:06
The app I'm developing contains 2 separate layouts: one is for the regular phones, other for small tablets such as NOOKcolor. The decision which is which is made based on the screen width resolution (currently 600dip). It looks great on Nook but terrible on HTC Rezound, which has a 720 x 1280 display. On the latter, regardless of higher resolution, everything (text, images, etc) look much larger so it gets all bunched up. What would be a good approach to pick the right device? Perhaps detect physical size (4.3" vs 7") vs resolution? Use the following method to detect your device's screen size:

How to find out whether android device has cellular radio module?

痴心易碎 提交于 2019-12-01 06:11:11
问题 How can I find out for sure that device really has gsm, cdma or other cellular network equipment (not just WiFi)? I don't want to check current connected network state, because device can be offline in the moment. And I don't want to check device id via ((TelephonyManager) act.getSystemService(Context.TELEPHONY_SERVICE)).getDeviceId() because some devices would just give you polymorphic or dummy device ID. Actualy, I need to check cell equipment exactly for skipping TelephonyManager

HTML5 audio won't play on mobile devices

帅比萌擦擦* 提交于 2019-12-01 05:53:46
Dear HTML5 developers, I'm having some troubles with this HTML5 audio... So let's jump into it. ap = "<audio width='200' height='30' preload='auto' controls autobuffer>"; ap += "<source src='util/blob_audio.php?i=" + w + "&ogg=1' type='audio/ogg' />"; ap += "<source src='util/blob_audio.php?i=" + w + "&mp3=1' type='audio/mpeg' />"; ap += "</audio>"; I am generating it in JavaScript and a method returns it when needed. I guess I should not have to mention that "w" variable, that's a parameter ( YouDon'tSay ) and it works just fine. It should be ok, right? They appear on desktops but they are