29 lines
819 B
Java
29 lines
819 B
Java
package com.android.settings;
|
|
|
|
import android.provider.Telephony;
|
|
import static android.provider.Telephony.Intents.SECRET_CODE_ACTION;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.BroadcastReceiver;
|
|
import android.util.Config;
|
|
import android.util.Log;
|
|
import android.view.KeyEvent;
|
|
|
|
|
|
public class TestingSettingsBroadcastReceiver extends BroadcastReceiver {
|
|
|
|
public TestingSettingsBroadcastReceiver() {
|
|
}
|
|
|
|
@Override
|
|
public void onReceive(Context context, Intent intent) {
|
|
if (intent.getAction().equals(SECRET_CODE_ACTION)) {
|
|
Intent i = new Intent(Intent.ACTION_MAIN);
|
|
i.setClass(context, TestingSettings.class);
|
|
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
context.startActivity(i);
|
|
}
|
|
}
|
|
}
|