samsung-mobile

Every WebKit-based browser crashes sites using Omniture. Why?

*爱你&永不变心* 提交于 2019-12-10 12:36:47
问题 Actually, a more accurate statement is: Every WebKit-based browser crashes on http://m.allrecipes.com/ but only in a Samsung Continuum SCH-i400 phone. I am trying to implement a WebView-based browser, mainly for learning purposes (there are way too many on the market, why add one?), and I was impressed by how quickly I could come up with a basic working one. I tested it on numerous sites on my Samsung Continuum phone and they all worked flawlessly, except for m.allrecipes.com . Whenever I

What browser does the Samsung Galaxy use?

人走茶凉 提交于 2019-12-10 12:32:40
问题 Looking to check a site on a Samsung Galaxy, what browser does it use out the box and where can I emulate it - either online or on OSX? Reason I am asking is a few CSS properties do not work and need to find a fix. 回答1: The Browser app that is present on TouchWiz (Galaxy) devices is not the stock Android (AOSP) Browser. The Samsung Browser has customizations on top of the stock browser (such as the functionality for OS/Browser-controlled elements i.e. select fields). The bad news is that it

How to us Galaxy Note's handwriting recogntion

孤街浪徒 提交于 2019-12-10 12:23:22
问题 I have a simple prototype that receives spen input. I would like to recognize the text inputed by the user. Does the Galaxy Note family (Note 8, Note 2 and 3) provide an intent where you input the strokes and get out text recognized output ? 回答1: Download Samsung Mobile SDK http://developer.samsung.com/samsung-mobile-sdk The sample project at: Samsung_Mobile_SDK_1.5/Samples/Pen/src/com/samsung/android/sdk/pen/pg/example5_6 shows how to use text recognition. 回答2: Do not freeze or disable

SMS are duplicated as Calls(Samsung galaxy S II)

◇◆丶佛笑我妖孽 提交于 2019-12-10 11:49:31
问题 Ok, guys, here's my code for getting SMS: Cursor cursor = getContentResolver().query(Uri.parse(uri), null, CallLog.Calls.DATE + " > " + lastSmsTime, null, CallLog.Calls.DATE + " ASC"); Where type is: "content://sms/inbox" "content://sms/sent" And for calls: String[] projection = new String[] { CallLog.Calls.NUMBER, CallLog.Calls.TYPE, CallLog.Calls.DURATION, CallLog.Calls.DATE }; Cursor managedCursor = getContentResolver().query( CallLog.Calls.CONTENT_URI, projection, CallLog.Calls.DATE + " >

textView.getSelectionEnd() returning start index value on Samsung Marshmallow 6.0 devices

蹲街弑〆低调 提交于 2019-12-10 02:54:25
问题 This issue is observed on Samsung devices with Android 6.0 only. It is working fine on all other devices, including non - Samsung devices with android 6.0 and Samsung devices with Android 5.1 and below. Currently we don`t have any Samsung device with Android 6.0 to readily check things on it, but we are arranging it soon. The feature where we are using this : The user long presses on a word from a sentence in a TextView and then user can edit the selected word. We accomplish this by : Making

Emulator for galaxy s3

拈花ヽ惹草 提交于 2019-12-10 02:26:41
问题 Has Samsumg provided emulator support for galaxy s3. I want to test my app on S3 Emulator as I'm reading the comments on google play that the app is crashing on Samsung Galaxy S3. Can someone help me with this. Thanks in advance. 回答1: you can use the samsung remote test lab Samsung Remote Test Tab OR this link for your Support Here (It gives 1 hour free trial to test your app.) EDITED For Emulator you can Use Below Informations. Target: Google APIs - API Level 15 Skin: Built-in WXGA720

Media Player socket exception in Samsung Grand

微笑、不失礼 提交于 2019-12-09 19:00:55
问题 we are playing media through a local proxy server. Everything was fine till the new Samsung Grand device. In that specific device we are getting a Socket exception as following: 4-04 17:55:35.646: W/System.err(15187): java.net.SocketException: sendto failed: ECONNRESET (Connection reset by peer) 04-04 17:55:35.646: W/System.err(15187): at libcore.io.IoBridge.maybeThrowAfterSendto(IoBridge.java:506) 04-04 17:55:35.646: W/System.err(15187): at libcore.io.IoBridge.sendto(IoBridge.java:475) 04-04

Samsung Galaxy Devices can't use geolocation.getCurrentPosition

﹥>﹥吖頭↗ 提交于 2019-12-09 05:33:15
问题 OK, so I've been looking for an adequate response to this issue for quite some time. I have a web application that uses navigator.geolocation.getCurrentPosition to get a user's position. The native browser on the Samsung Galaxy devices nearly always have problems with the getCurrentPosition code. I have tried all kinds of variations of this code with callbacks and timeouts, but its always the same issue. Plenty of people have documented this issue, and some indicate that restarting the device

What is the Samsung s3 user-agent?

有些话、适合烂在心里 提交于 2019-12-09 02:37:11
问题 I'm trying to find out what is the user agent of Samsung Galaxy S3. I don't have the device so I can't test myself. The user agent is going to be recognized by my web server. 回答1: Mozilla/5.0 (Linux; U; Android 4.0.4; en-gb; GT-I9300 Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 回答2: http://en.wikipedia.org/wiki/Samsung_Galaxy_S_III this page contains all model number for s3 across all countries one can search for user string for all such models. 回答3:

Samsung Note 2 can't reach onLocationChanged()

守給你的承諾、 提交于 2019-12-08 21:40:41
问题 It works on most devices except Galaxy Note 2. It connects to Google Client, but can't reach onLocationChanged() that implements LocationListener . Anyone has any idea what it causes and why only on this device? @Override public void onLocationChanged(Location location) { mLastLocation = location; if (mLastLocation != null) { lat = mLastLocation.getLatitude(); lng = mLastLocation.getLongitude(); Toast.makeText(getApplicationContext(), String.valueOf(lat) + "/" + String.valueOf(lng), Toast