My code refused to return the right requestCode so I've improvised a bit. It always returned -1.
if(v.getId() == R.id.imageButton9)
{
request = 888;
Intent wpIntent = new Intent();
wpIntent.setType("image/*");
wpIntent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(wpIntent, "Select Picture"), SELECT_PICTURE);
}
else if(v.getId() == R.id.imageButton10)
{
String uri = null;
request = 999;
rtIntent = new Intent(RingtoneManager.ACTION_RINGTONE_PICKER);
rtIntent.putExtra(RingtoneManager.EXTRA_RINGTONE_TYPE, RingtoneManager.TYPE_RINGTONE);
rtIntent.putExtra(RingtoneManager.EXTRA_RINGTONE_TITLE, "Select Tone");
if( uri != null)
{
rtIntent.putExtra(RingtoneManager.EXTRA_RINGTONE_EXISTING_URI, Uri.parse(uri));
}
else
{
rtIntent.putExtra(RingtoneManager.EXTRA_RINGTONE_EXISTING_URI, (Uri)null);
}
this.startActivityForResult(rtIntent, SELECT_TONE);
}
I've declared two variables at the beginning of my code:
protected static final int SELECT_PICTURE = 888;
protected static final int SELECT_TONE = 999;
Here's the onActivityResult:
public void onActivityResult(int resultCode, int requestCode, Intent data)
{
Toast.makeText(this, "onActivityResult: "+requestCode, Toast.LENGTH_SHORT).show();
if(request == 888)
{
Toast.makeText(this, "Picture Selection", Toast.LENGTH_SHORT).show();
Uri selectedImage = Uri.parse(data.getDataString());
wpPath = getPath(selectedImage);
Toast.makeText(this, "WP Path: "+wpPath, Toast.LENGTH_SHORT).show();
request = 0;
}
else if(request == 999)
{
Toast.makeText(this, "Tone Selection", Toast.LENGTH_SHORT).show();
Log.i("RT Picked is: ", rtIntent.getParcelableExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI).toString());
Uri uri = rtIntent.getParcelableExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI);
if (uri != null)
{
rtPath = uri.toString();
Toast.makeText(this, "Ringtone Path: "+rtPath, Toast.LENGTH_SHORT).show();
request = 0;
}
}
}
This always force closes. It give the following error:
06-01 12:40:35.388: E/AndroidRuntime(7437): java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=999, result=-1, data=Intent { (has extras) }} to activity {com.asim.autobot/com.asim.autobot.profile}: java.lang.NullPointerException
I'm stuck. Can't solve this problem.
First of all, why does the requestCode always return -1? Secondly, why does the application force close on rtIntent.getParcelableExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI);?
EDIT: Full Logcat http://i47.tinypic.com/1zm2gww.jpg
The Line it points to is the Log.i("RT Picked is: ", rtIntent.getParcelableExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI).toString());
When you get a resultCode of -1
then it worked as RESULT_OK = -1
Checking the following line:
rtIntent.getParcelableExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI).toString()
You have a parameter called Intent data
and you should work on that instead of your rtIntent
variable. Your rtIntent variable will not be modified so getParcelableExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI)
will probably return null.