merge from open-source master
Change-Id: I3607454a9257701855354c12ef1f36841c889aea
This commit is contained in:
@@ -23,13 +23,10 @@ import android.content.DialogInterface;
|
||||
import android.content.Intent;
|
||||
import android.content.IntentFilter;
|
||||
import android.os.Bundle;
|
||||
import android.os.Handler;
|
||||
import android.os.storage.IMountService;
|
||||
import android.os.Message;
|
||||
import android.os.RemoteException;
|
||||
import android.os.ServiceManager;
|
||||
import android.os.Environment;
|
||||
import android.widget.Toast;
|
||||
import android.util.Log;
|
||||
|
||||
/**
|
||||
@@ -38,7 +35,7 @@ import android.util.Log;
|
||||
*/
|
||||
public class ExternalMediaFormatActivity extends AlertActivity implements DialogInterface.OnClickListener {
|
||||
|
||||
private static final int POSITIVE_BUTTON = AlertDialog.BUTTON1;
|
||||
private static final int POSITIVE_BUTTON = AlertDialog.BUTTON_POSITIVE;
|
||||
|
||||
/** Used to detect when the media state changes, in case we need to call finish() */
|
||||
private BroadcastReceiver mStorageReceiver = new BroadcastReceiver() {
|
||||
|
||||
@@ -223,7 +223,7 @@ public final class RingtonePickerActivity extends AlertActivity implements
|
||||
* On click of Ok/Cancel buttons
|
||||
*/
|
||||
public void onClick(DialogInterface dialog, int which) {
|
||||
boolean positiveResult = which == BUTTON1;
|
||||
boolean positiveResult = which == DialogInterface.BUTTON_POSITIVE;
|
||||
|
||||
// Stop playing the previous ringtone
|
||||
mRingtoneManager.stopPreviousRingtone();
|
||||
|
||||
Reference in New Issue
Block a user