Questions tagged [samsung-mobile]

This tag is for questions related to application development issues affecting just Samsung Mobile devices.

This tag is for questions related to application development issues affecting just Samsung Mobile devices.

1611 questions
2
votes
1 answer

Samsung S6 Webview css animations issue

I'm working on application written in cordova/phonegap. Now i have some strange issue - in Samsung s6 css animation does not work properly. For example - i have a spinner animated with css. Every time when launching application spinner doesn't want…
2
votes
2 answers

Samsung Galaxy devices Camera Intent issue

Getting below error:- make sure class name exists is public and has an empty constructor that is public android when calling Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(intent,…
Hardy
  • 2,576
  • 1
  • 23
  • 45
2
votes
0 answers

Facing issue in boot Samsung SM-T555 android device

I have a Samsung SM-T555 android device with OS version 5.0.2. I have used DevicePolicyManager API of Android and made this device as device owner but its hanging. Also I tried to reboot the device but its stuck and I'm not able to reboot it. I…
user2478004
  • 101
  • 5
2
votes
0 answers

NuPlayer seems to freeze MediaPlayer on Samsung devices, how to disable programmatically?

I've been banging my head on the wall for a few days now with MediaPlayer. After many hours of deliberation I decided to check the video player on lollipop devices and it is NuPlayer. Currently I have a RecyclerView of Video objects that all use a…
AndyRoid
  • 5,062
  • 8
  • 38
  • 73
2
votes
0 answers

Download Manager issue in Samsung S6 model. how to fix this issue?

I'm downloading the .txt, .doc, .pdf etc files from my android application. Its working fine in all devices but I'm unable to download the files in S6 device. I have used the following code let me know if any changes/modification required. …
2
votes
1 answer

Samsung Intent For OnActivityResult coming Null when call camera

I am using following code to get picture from camera. Except samsung it is working fine in other mobiles. please let me know what i am doing wrong. final File root = new File(Environment.getExternalStorageDirectory() + File.separator + "temp" +…
Santhi Bharath
  • 2,818
  • 3
  • 28
  • 42
2
votes
1 answer

Adding a contact group gives NullPointerexception on HTC and Samsung devices

I'm trying to add a contacts group with a ContentProviderOperation. This works on Nexus, Moto G and Asus devices but it crashes on HTC M7, M8, M8 mini and M9, Samsung S4, S5. Because I only have the sources of the normal clean Android I can't find…
2
votes
0 answers

Galaxy s6 Android LL: onConnectionStateChange return me 133 Error Status

I have developed an app that it have to reconnect to a server app that is installed on a certain device. I have tested my app on some device, but on galaxy s6 with Lollipop I have some problem. This are the combination : client (peripherall) is…
2
votes
0 answers

RecyclerView scrolls slowly and with lag on Samsung note 4

I have a RecyclerView that each row of that has a GridLayout. I inserted some rows (about 10) in the RecyclerView. It scrolls smoothly in Nexus 5 and Nexus 7 and Sony. But when I run it on Samsung Note 4, it scrolls very slowly and with lots of…
2
votes
1 answer

Android Samsung Galaxy S4 Custom Camera Preview Distorted

I am using custom camera in my app built with target sdk 22. I have tested camera through my app on many devices including Samsung S5, Samsung Note 4 and huawei ascend mate 7 and Image preview is fine. But when I open Camera through my app in…
Sateesh
  • 103
  • 1
  • 9
2
votes
1 answer

Android camera setPreviewSize

I am trying to record a video on a Samsung Galaxy S2. I have used the usual calculations to figure out the best preview dimensions and this has returned 720x480 or 800x480 depending on algorithm. The full list returning from…
vkislicins
  • 3,331
  • 3
  • 32
  • 62
2
votes
1 answer

Cannot Debug using Galaxy s3 phone

I have a project which is debugging perfectly on tablet and other devices, but when i attach galaxy s3 phone with my notebook, debugger dialog shows on the start of my activity but right after application crashes. here is the log cat: 05-13…
UMAR-MOBITSOLUTIONS
  • 77,236
  • 95
  • 209
  • 278
2
votes
1 answer

disable Samsung touch Menu Button - onKeyDown does not work

How do I disable the hardware buttons from the samsung devices. Beside the home-button which is a normal button, they have touch-sensitive menu and back button. The onKeyDown and onKeyUp are not called. I implemented this in the activity: public…
Christof Buechi
  • 163
  • 1
  • 12
2
votes
0 answers

How to get a list of input languages on a Samsung Galaxy S4

I've tried to get a list of input languages on my Samsung Galaxy S4. I've set two input languages in the settings: English(US) and Russian. I've used this code for getting it: InputMethodManager inputMethodManager = (InputMethodManager) context …
valerybodak
  • 4,195
  • 2
  • 42
  • 53
2
votes
1 answer

Over 10 seconds to load an audiostream with MediaPlayer on Samsung Galaxy S5 Android 5.0

Since the update to Android 5.0 MediaPlayer does not work properly on the Samsung Galaxy S5. The loading time is over 10 seconds after you start an audio stream. Samplecode: MediaPlayer mPlayer new MediaPlayer(); String url =…