Questions tagged [android-4.3-jelly-bean]

Android 4.3 (API Level 18) is an updated version of Jelly Bean. New features include improved multi-user profiles and Bluetooth low-energy support.

Google released Jelly Bean 4.3 under the slogan "An even sweeter Jelly Bean" on 24 July 2013 during an event in San Fransisco called "Breakfast with Sundar Pichai". The 2nd generation Nexus 7 tablet was the first device to officially ship with it

For developers, Android 4.3 includes the latest performance enhancements to keep your apps fast, smooth, and efficient, together with new APIs and capabilities to use in your apps.

More Info:

228 questions
2
votes
1 answer

How to read the rssi value of multiple device at one time where I have connected?

I am developing an application where I have to connect to Bluetooth device on Android 4.3. I can connect to the BLE device and read the RSSI from the device by using BluetoothGatt.readRemoteRssi(). And I want to read the RSSI of multiple device at…
Wun
  • 6,211
  • 11
  • 56
  • 101
2
votes
1 answer

issue in sending sms using smsManager.sendTextManager on android

i am sending an sms from my app to server which uses 5 digit mobile number. on 4.2.2 os, it ask me below popup Edited Q. How to handle cancel/ok button?
2
votes
1 answer

How to get Bonded Devices in Android 4.3 API 18?

I am developing an application where I have to connect to Bluetooth device on Android 4.3. I can get the device-A that I have paireduse by using getBondedDevices(). But this device-A is connect via bluetooth in android->config->bluetooth, not Does…
Wun
  • 6,211
  • 11
  • 56
  • 101
2
votes
0 answers

actionbarsherlock on android 4.3 wont hide the bottom action bar properly, it shows blank white space instead

Hi I am using actionbarsherlock and splitActionBarWhenNarrow to to get a bottom action bar with my menu information. I have set windowActionBarOverlay to be true. In android 4.2 and below calling getSupportActionBar().hide(); will properly hide both…
2
votes
3 answers

Media Codec API with Input as Surface not working with H264 encoder (bigflake example code)

I am trying to run the example code of Media Codec API with H264 Encoder on 4.3 explained in following link of bigflake http://bigflake.com/mediacodec/CameraToMpegTest.java.txt I have faced following problem. -> In H264 encoder code the color…
Nehal Shah
  • 93
  • 2
  • 11
2
votes
0 answers

Broadcasting Beacon-Frames with custom IE in Android 4.3 using AP Mode

I am trying to add some custom Vendor Specific Elements for Beacon Frames in Android 4.3. I found following Informations in a Config File in external/wpa_supplicant_8/wpa_supplicant/wpa_supplicant.conf in the AOSP Source Code "Additional vendor…
2
votes
2 answers

How to set music files which are not in Media Store as ringtone

Before Jelly Bean level 18 I can use music files which are not in Media store (for example, a private .mp3 file in a folder contains .nomedia file, so Media Scanner does not scan this folder and does not know about this file) but from Android 4.3…
Wayne
  • 6,361
  • 10
  • 46
  • 69
2
votes
1 answer

Android: Save Mediarecorder-Stream as playable file

I want to record videos with my android device (Nexus 10) and upload it later to youtube. So far I'am recording with the android MediaRecoder and stream it via LocalSocket to save the data to multiple files. But the files are not playable. I read…
2
votes
2 answers

Cant Hide Notification bar in Android 4.3 API 18

Prior to 4.3, @android:style/Theme.Black.NoTitleBar and requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);` works perfectly to hide…
2
votes
0 answers

Android 4.3 specific crash calling PackageManager.getDrawable()

I'm getting a hard crash in my app on devices running Android 4.3. The code in question works flawlessly on Android 4.2 and below. I have traced the error to a call to mPackageManager.getDrawable(). Every so often, calling this function results in…
Chris Lacy
  • 4,222
  • 3
  • 35
  • 33
2
votes
0 answers

Android 4.3: Spellchecker: Disable red underline without disabling typeahead suggestions

I have an EditText in which the user can type freeform text, alongside programmatically created Spannable tokens that the user can delete but not modify. Unfortunately, these tokens still get spell checked and underlined, even though my app does not…
Stephen Schwink
  • 512
  • 4
  • 7
2
votes
1 answer

Android 4.3 incompatibility issues with Galaxy Nexus and my own application

I have just uploaded an android application on play store for alpha testing and below are its aapt dump badging details. It shows that this application is incompatible with my Galaxy Nexus with Android 4.3. I have been testing this application on…
Aalap
  • 2,847
  • 2
  • 26
  • 24
2
votes
2 answers

android webview crash 4.3

i got a problem with my payement webview in android since the 4.3 release. I guess is due to the SSL certificate redirection but i can't change it. I tried the url on samsung or sony < 4.2 with success but on two different 4.3 nexus i got this…
Jeremy Piednoel
  • 407
  • 2
  • 5
  • 12
2
votes
0 answers

Expandable list view move group icon indicator to left in jellyBean 4.3 version?

Expandable list view moving group icon indicator to left in jellyBean 4.3 version but in all below versions indicator showing at right side. Here is my code, expList.setIndicatorBounds(expList.getRight()- objBLCommonOperations.getDip(95),…
2
votes
1 answer

Retrieving a large 32 bit unsigned integer from a Bluetooth low energy GATT characteristic

I am attempting to retrieve a very large (potentially 2^32 - 1) unsigned 32 bit integer from a bluetooth 4.0 characteristic using the getIntValue method of my BluetoothGattCharacteristic instance. I am passing FORMAT_UINT32 to getIntValue, but…