|
@@ -30,34 +30,47 @@ public class MainActivity extends Activity {
|
|
|
int repeatCount = 0;
|
|
|
int amount;
|
|
|
String number, tag = "MainActivity";
|
|
|
+ MyPhoneStateListener myPhoneStateListener = new MyPhoneStateListener();//新建一个打电话监听器对象
|
|
|
+ TelephonyManager telephonyManager;
|
|
|
|
|
|
@Override
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
super.onCreate(savedInstanceState);
|
|
|
setContentView(R.layout.activity_main);
|
|
|
- edt1 = findViewById(R.id.edittext1);
|
|
|
- edt2 = findViewById(R.id.edittext2);
|
|
|
+
|
|
|
+ initData();
|
|
|
+ requirePermission();
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void onDestroy() {
|
|
|
+ super.onDestroy();
|
|
|
+ telephonyManager.listen(myPhoneStateListener, PhoneStateListener.LISTEN_NONE);
|
|
|
+ }
|
|
|
+
|
|
|
+ private void initData() {
|
|
|
+ edt1 = findViewById(R.id.edtPhone);
|
|
|
+ edt2 = findViewById(R.id.edtNum);
|
|
|
tv1 = findViewById(R.id.textview1);
|
|
|
tv2 = findViewById(R.id.textview2);
|
|
|
btn1 = findViewById(R.id.button1);
|
|
|
btn2 = findViewById(R.id.button2);
|
|
|
btn3 = findViewById(R.id.button3);
|
|
|
+
|
|
|
//声明一个优先级设置 类型,载入配置文件
|
|
|
- sharedPreferences = getSharedPreferences("phones", MODE_PRIVATE);
|
|
|
+ sharedPreferences = getSharedPreferences("AutoCall", MODE_PRIVATE);
|
|
|
edt1.setText(sharedPreferences.getString("number", ""));
|
|
|
btn1.setOnClickListener(new OnClickListener() {
|
|
|
|
|
|
@Override
|
|
|
public void onClick(View v) {
|
|
|
- // TODO 自动生成的方法存根
|
|
|
if (edt1.getText().toString().trim().length() > 5
|
|
|
&& edt2.getText().toString().trim().length() > 0) {
|
|
|
//如果输入的是电话号码,则拨打
|
|
|
number = edt1.getText().toString().trim();
|
|
|
Editor editor = sharedPreferences.edit();
|
|
|
editor.putString("number", number);
|
|
|
- editor.commit();
|
|
|
- //getString()第二个参数为缺省值,如果preference中不存在该key,将返回缺省值
|
|
|
+ editor.apply();
|
|
|
Toast.makeText(getApplicationContext(),
|
|
|
"AutoCall现在带您去挂断重拨", Toast.LENGTH_SHORT).show();
|
|
|
amount = Integer.parseInt(edt2.getText().toString().trim());
|
|
@@ -77,15 +90,13 @@ public class MainActivity extends Activity {
|
|
|
|
|
|
@Override
|
|
|
public void onClick(View v) {
|
|
|
- // TODO 自动生成的方法存根
|
|
|
if (edt1.getText().toString().trim().length() > 5
|
|
|
&& edt2.getText().toString().trim().length() > 0) {
|
|
|
//如果输入的是电话号码,则拨打
|
|
|
number = edt1.getText().toString().trim();
|
|
|
Editor editor = sharedPreferences.edit();
|
|
|
editor.putString("number", number);
|
|
|
- editor.commit();
|
|
|
- //getString()第二个参数为缺省值,如果preference中不存在该key,将返回缺省值
|
|
|
+ editor.apply();
|
|
|
amount = Integer.parseInt(edt2.getText().toString().trim());
|
|
|
if (thread == null) {
|
|
|
Toast.makeText(getApplicationContext(),
|
|
@@ -93,7 +104,6 @@ public class MainActivity extends Activity {
|
|
|
thread = new Thread(new Runnable() {
|
|
|
@Override
|
|
|
public void run() {
|
|
|
- // TODO Auto-generated method stub
|
|
|
handler.sendEmptyMessage(0);
|
|
|
}
|
|
|
});
|
|
@@ -118,18 +128,26 @@ public class MainActivity extends Activity {
|
|
|
|
|
|
@Override
|
|
|
public void onClick(View v) {
|
|
|
- // TODO 自动生成的方法存根
|
|
|
- Toast.makeText(getApplicationContext(), "现在停止自动重拨!",
|
|
|
- Toast.LENGTH_SHORT).show();
|
|
|
+ Toast.makeText(getApplicationContext(), "现在停止自动重拨!", Toast.LENGTH_SHORT).show();
|
|
|
StopThread();
|
|
|
MainActivity.this.finish();
|
|
|
}
|
|
|
});
|
|
|
+ }
|
|
|
|
|
|
+ void requirePermission() {
|
|
|
+ // require phone call permisson
|
|
|
+ if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) {
|
|
|
+ if (checkSelfPermission(android.Manifest.permission.CALL_PHONE) != android.content.pm.PackageManager.PERMISSION_GRANTED) {
|
|
|
+ requestPermissions(new String[]{android.Manifest.permission.CALL_PHONE}, 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 挂断电话
|
|
|
+ */
|
|
|
protected void end2doCall() {
|
|
|
- // TODO 自动生成的方法存根
|
|
|
|
|
|
}
|
|
|
|
|
@@ -139,24 +157,20 @@ public class MainActivity extends Activity {
|
|
|
@Override
|
|
|
public void handleMessage(Message msg) {
|
|
|
super.handleMessage(msg);
|
|
|
+
|
|
|
if (repeatCount >= amount) {
|
|
|
StopThread();
|
|
|
tv2.setText("已拨打次数:\n" + repeatCount + "次");
|
|
|
|
|
|
} else {
|
|
|
- RepeatDial();
|
|
|
+
|
|
|
+ telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);//新建一个电环管理对象
|
|
|
+ telephonyManager.listen(myPhoneStateListener, PhoneStateListener.LISTEN_CALL_STATE);
|
|
|
tv2.setText("已拨打次数:\n" + repeatCount + "次");
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
|
|
|
- private void RepeatDial() {
|
|
|
- MyPhoneStateListener myPhoneStateListener = new MyPhoneStateListener();//新建一个打电话监听器对象
|
|
|
- TelephonyManager telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);//新建一个电环管理对象
|
|
|
- telephonyManager.listen(myPhoneStateListener,
|
|
|
- PhoneStateListener.LISTEN_CALL_STATE);
|
|
|
- }
|
|
|
-
|
|
|
public class MyPhoneStateListener extends PhoneStateListener {
|
|
|
@Override
|
|
|
public void onCallStateChanged(int state, String phoneNumber) {
|
|
@@ -164,8 +178,7 @@ public class MainActivity extends Activity {
|
|
|
case TelephonyManager.CALL_STATE_IDLE:
|
|
|
if (repeatCount <= amount && thread != null) {
|
|
|
repeatCount++;
|
|
|
- Intent intent = new Intent(Intent.ACTION_CALL,
|
|
|
- Uri.parse("tel:" + number));
|
|
|
+ Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + number));
|
|
|
startActivity(intent);
|
|
|
|
|
|
Toast.makeText(MainActivity.this, "正在拨打电话…",
|
|
@@ -179,6 +192,7 @@ public class MainActivity extends Activity {
|
|
|
case TelephonyManager.CALL_STATE_RINGING:
|
|
|
break;
|
|
|
default:
|
|
|
+ Log.i("MainActivity", "State:" + String.valueOf(state));
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
@@ -205,13 +219,4 @@ public class MainActivity extends Activity {
|
|
|
Log.i(tag, "thread stoped");
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- public void autoCall() {
|
|
|
- //传入服务, parse()解析号码
|
|
|
- Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"
|
|
|
- + number));
|
|
|
- //通知activtity处理传入的call服务
|
|
|
- MainActivity.this.startActivity(intent);
|
|
|
- }
|
|
|
-
|
|
|
}
|