06-01-2012 02:38 PM
OMG, i was sure it'll be there in 2.1
07-12-2012 07:43 PM
Well I emailed MSorn about 2 months ago about this issue - and he said he contact the person responsible and have him post an update. Nothing happened. So I contacted jdreher who is the person responsibble for this, via PM. Still no response. The posts that I've seen jdreher to have seemed to be in regards to other topics (eg. server bugs with OS 2.1 Beta) - not android OS. So I'm wondering if this was wrongly assigned to him and he doesn't care to look at it. I'm not sure what the deal is. I'm at a loss how to get this implemented. I've stopped developping for the PB because of this issue. Its very frustrating
Anyone else have any suggestion how to encourage RIM to get this implemented or at least off triage (which means they haven't even looked at the feasibility of doing it)?
07-13-2012 01:13 AM
I think this is Android implementation issue. I was told by some users that the apps written in Adobe Air (e.g. Magellan Compass app) does not have the same issue on PB.
09-24-2012 08:03 AM
did your keep alive Screen problem solved???
09-24-2012 08:13 AM
I spoke with a manager at a BlackBery Jam about this topic. They stated that he was aware that this implementation hadn't been implemented. He essentially stated that it wasn't an easy fix and wasn't on the current radar.
09-24-2012 08:43 AM
Hi!
I am trying to set the volume of BB Playbook in android through audio manager using SeekBar but the volume of device is not changing. however if i try to get the current volume of system (BB Palybook) it shows me the correct volume but when i try to set the volume through seekBar it did not works. here is my code :
import android.media.AudioManager;
this is the import for audioManager
AudioManager audioManager;
this is the audioManager variable
seekbar.setOnSeekBarChangeListener(new OnSeekBarChangeListener() {
public void onStopTrackingTouch(SeekBar seekBar) {
// TODO Auto-generated method stub
}
public void onStartTrackingTouch(SeekBar seekBar) {
// TODO Auto-generated method stub
}
public void onProgressChanged(SeekBar seekBar, int progress,boolean fromUser) {
// TODO Auto-generated method stub
audioManager.setStreamVolume(AudioManager.STREAM_M
}
});
Please if anyone have solution to this problem. what i think that this happens due to BB security restrictions. Is that so??