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
2 answers

OpenSL ES crashes randomly on Samsung Galaxy SII (GT-I9100)

I'm using OpenSL ES on android. It seems to work pretty well. However, after a while my app crashes on Samsung Galaxy SII (GT-I9100). Other phones (ZTE Blade, Galaxy Nexus, HTC evo 3D) don't seem to crash this way. Here's the log from logcat,…
Habba
  • 1,179
  • 2
  • 13
  • 32
2
votes
1 answer

Web service problems in J2ME for Micromax and Samsung

Why can't Micromax and Samsung mobile call a web service and give Java error at installation time? My web service coded in WCF service and I use j2me. My code is public void startApp() { display = Display.getDisplay(this); try { …
RAJ PATEL
  • 554
  • 4
  • 12
2
votes
2 answers

Phonegap / Cordova integration with Bada

Has anyone been successful with the integration of Phonegap in Bada? I am using SDK 2.0.4 and have tried the project app available here (https://github.com/cordova/cordova-bada) but keep getting this error: TypeError: 'undefined' is not an object…
gemini
  • 652
  • 1
  • 6
  • 11
2
votes
4 answers

How to take a screen capture on Motorola Xoom?

I want to take a screen capture on Motorola Xoom. In Samsung Galaxy S-I you can do it by: start pressing the HOME and immediately press BACK. In Samsung Galaxy S-II/III you can do it by: start pressing the HOME and immediately press on OFF/Lock…
David
  • 37,109
  • 32
  • 120
  • 141
2
votes
1 answer

Samsung android clock app - source code?

Anyone happen to know if the source to the Android Clock app on Samsung phones is available: package name is sec.android.app.clockpackage I've pulled the Samsung source down and the only app in the tree is the Email client (possibly because they…
Tim Watts
  • 41
  • 1
  • 4
2
votes
2 answers

Bluetooth communication on Samsung Galaxy S

I have an Android application running on a Samsung Galaxy S phone. The application collects sensor data via bluetooth from a device. For the most part, there is no data being sent/received. I have set up my application so that it "auto-reconnects"…
2
votes
2 answers

Can I integrate samsung "All Share" with my android application on samsung phones

I want to integrate samsung "All Share" functionality with my android app in the same way we integrate Twitter and Facebook api to share photos and videos. Is it possible. I've a photosharing application like instagram, on which user can upload…
Umar Maniar
  • 512
  • 1
  • 5
  • 14
2
votes
1 answer

Can a Samsung Galaxy S2 detect a signature on the screen?

Im working on a project where I hope to use an android mobile device to query a database and retrieve information. Part of the project involves the user to sign the phone with their signature so that it is sent back to the database. By signing I…
DMC
  • 1,184
  • 5
  • 21
  • 50
2
votes
0 answers

Strange border when drawing shapes in onDraw (only SGS2)

I'm having some issues when drawing shapes (i.e. with drawRect). Shapes always look ok, but when I run the application in a Samsung Galaxy S2, I see a 1px darker border around the shape. This only happens in SGS2, not in other phones or tablets, nor…
danielnavarro
  • 131
  • 2
  • 4
2
votes
1 answer

Midlet doesnt respond to touch in older touch screen phone

I am very new to j2me. I have developed a basic SMS Banking app. My app works in most phones which are touch and non touch devices (Samsung duos, Monte, Nokia 6120c …, Sony Ericson w300). But when I installed it in a Samsung SGH-D980 it installs and…
Kanishka
  • 143
  • 1
  • 1
  • 12
2
votes
0 answers

Unexpected complication data (Galaxy Watch 4)

I've created simple complication which shows air pressure in hhmg units (because default one uses hPa units). It works perfectly on Pixel Watch. But when I've installed it on Galaxy Watch 4 it doesn't appear in the list of complications. The only…
Dmytro Rostopira
  • 10,588
  • 4
  • 64
  • 86
2
votes
0 answers

Prevent install two instance of same app on samsung android 13 devices

Enabling dual messenger app feature in android 13 with samsung devices, flutter app get installed twice, how to prevent this behaviour? I don't know what to do
2
votes
0 answers

Android splash screen api read darkmode based on device setting issue

I use android splash screen api for my app splash screen. I implemented the dark mode theme for my app and everything is working. But on some devices, like the Samsung devices with Android 13 (API 33) when I switched the dark mode to light from the…
2
votes
1 answer

Samsung Android 13 Keyboard Span ANR and Crashes

Samsung with its special keyboard implementation causes either ANR or crashes within EditText. ANRs look like android.text.SpannableStringBuilder.countSpans (SpannableStringBuilder.java:930) android.text.SpannableStringBuilder.countSpans…
HellCat2405
  • 752
  • 7
  • 16
2
votes
0 answers

ActivityTransitions API not calling BroadcastReceiver on Samsung Deivce

I implemented the Activity Transitions API with a PendingIntent and a BroadcastReceiver as seen below. The code works perfectly fine on a Pixel 3a. However, on a Samsung A32 and Samsung S22 Pro, the Broadcast receiver is never reached, eventhough…