|
@@ -22,196 +22,196 @@ import android.widget.TextView;
|
|
import android.widget.Toast;
|
|
import android.widget.Toast;
|
|
|
|
|
|
public class MainActivity extends Activity {
|
|
public class MainActivity extends Activity {
|
|
- SharedPreferences sharedPreferences;//保存输入过的号码
|
|
|
|
- EditText edt1, edt2;
|
|
|
|
- TextView tv1, tv2;
|
|
|
|
- Button btn1, btn2, btn3;
|
|
|
|
- Thread thread;
|
|
|
|
- int repeatCount = 0;
|
|
|
|
- int amount;
|
|
|
|
- String number, tag = "MainActivity";
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
- super.onCreate(savedInstanceState);
|
|
|
|
- setContentView(R.layout.activity_main);
|
|
|
|
- edt1 = (EditText) findViewById(R.id.edittext1);
|
|
|
|
- edt2 = (EditText) findViewById(R.id.edittext2);
|
|
|
|
- tv1 = (TextView) findViewById(R.id.textview1);
|
|
|
|
- tv2 = (TextView) findViewById(R.id.textview2);
|
|
|
|
- btn1 = (Button) findViewById(R.id.button1);
|
|
|
|
- btn2 = (Button) findViewById(R.id.button2);
|
|
|
|
- btn3 = (Button) findViewById(R.id.button3);
|
|
|
|
- //声明一个优先级设置 类型,载入配置文件
|
|
|
|
- sharedPreferences = getSharedPreferences("phones", 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,将返回缺省值
|
|
|
|
- Toast.makeText(getApplicationContext(),
|
|
|
|
- "AutoCall现在带您去挂断重拨", Toast.LENGTH_SHORT).show();
|
|
|
|
- amount = Integer.parseInt(edt2.getText().toString().trim());
|
|
|
|
- end2doCall();
|
|
|
|
- } else if (edt1.getText().toString().trim().length() <= 5) {
|
|
|
|
- //不拨打,提示输入号码错误
|
|
|
|
- Toast.makeText(getApplicationContext(),
|
|
|
|
- "检测到输入的非手机号码,傻眼了吧?", Toast.LENGTH_SHORT).show();
|
|
|
|
- } else {
|
|
|
|
- Toast.makeText(getApplicationContext(), "亲,至少拨打一次呀!",
|
|
|
|
- Toast.LENGTH_SHORT).show();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- btn2.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,将返回缺省值
|
|
|
|
- amount = Integer.parseInt(edt2.getText().toString().trim());
|
|
|
|
- if (thread == null) {
|
|
|
|
- Toast.makeText(getApplicationContext(),
|
|
|
|
- "AutoCall现在带您去自动重拨", Toast.LENGTH_SHORT).show();
|
|
|
|
- thread = new Thread(new Runnable() {
|
|
|
|
- @Override
|
|
|
|
- public void run() {
|
|
|
|
- // TODO Auto-generated method stub
|
|
|
|
- handler.sendEmptyMessage(0);
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- thread.start();
|
|
|
|
- Log.i(tag, "thread started");
|
|
|
|
- } else {
|
|
|
|
- Toast.makeText(getApplicationContext(), "您正在拨打电话呢!",
|
|
|
|
- Toast.LENGTH_SHORT).show();
|
|
|
|
- }
|
|
|
|
- // autoCall();
|
|
|
|
- } else if (edt1.getText().toString().trim().length() <= 5) {
|
|
|
|
- //不拨打,提示输入号码错误
|
|
|
|
- Toast.makeText(getApplicationContext(),
|
|
|
|
- "检测到输入的非手机号码,傻眼了吧?", Toast.LENGTH_SHORT).show();
|
|
|
|
- } else {
|
|
|
|
- Toast.makeText(getApplicationContext(), "亲,至少拨打一次呀!",
|
|
|
|
- Toast.LENGTH_SHORT).show();
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- btn3.setOnClickListener(new OnClickListener() {
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public void onClick(View v) {
|
|
|
|
- // TODO 自动生成的方法存根
|
|
|
|
- Toast.makeText(getApplicationContext(), "现在停止自动重拨!",
|
|
|
|
- Toast.LENGTH_SHORT).show();
|
|
|
|
- StopThread();
|
|
|
|
- MainActivity.this.finish();
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- protected void end2doCall() {
|
|
|
|
- // TODO 自动生成的方法存根
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- Handler handler = new Handler() {
|
|
|
|
-
|
|
|
|
- @SuppressLint("HandlerLeak")
|
|
|
|
- @Override
|
|
|
|
- public void handleMessage(Message msg) {
|
|
|
|
- super.handleMessage(msg);
|
|
|
|
- if (repeatCount >= amount) {
|
|
|
|
- StopThread();
|
|
|
|
- tv2.setText("已拨打次数:\n" + repeatCount + "次");
|
|
|
|
-
|
|
|
|
- } else {
|
|
|
|
- RepeatDial();
|
|
|
|
- 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) {
|
|
|
|
- switch (state) {
|
|
|
|
- case TelephonyManager.CALL_STATE_IDLE:
|
|
|
|
- if (repeatCount <= amount && thread != null) {
|
|
|
|
- repeatCount++;
|
|
|
|
- Intent intent = new Intent(Intent.ACTION_CALL,
|
|
|
|
- Uri.parse("tel:" + number));
|
|
|
|
- startActivity(intent);
|
|
|
|
-
|
|
|
|
- Toast.makeText(MainActivity.this, "正在拨打电话…",
|
|
|
|
- Toast.LENGTH_LONG).show();
|
|
|
|
- } else {
|
|
|
|
- StopThread();
|
|
|
|
- }
|
|
|
|
- break;
|
|
|
|
- case TelephonyManager.CALL_STATE_OFFHOOK:
|
|
|
|
- break;
|
|
|
|
- case TelephonyManager.CALL_STATE_RINGING:
|
|
|
|
- break;
|
|
|
|
- default:
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * 免提
|
|
|
|
- *
|
|
|
|
- * @param context
|
|
|
|
- */
|
|
|
|
- public void toggleSpeaker(Context context) {
|
|
|
|
- AudioManager am = (AudioManager) context
|
|
|
|
- .getSystemService(Context.AUDIO_SERVICE);
|
|
|
|
- am.setMode(AudioManager.MODE_IN_CALL);
|
|
|
|
- am.setSpeakerphoneOn(!am.isSpeakerphoneOn());
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- private void StopThread() {
|
|
|
|
- if (thread != null) {
|
|
|
|
- //需要调用停止线程的interrupt()方法,因为线程有可能在wait()或sleep(), 提高停止线程的即时性
|
|
|
|
- thread.interrupt();
|
|
|
|
- //不建议使用 thread.stop();
|
|
|
|
- thread = null;
|
|
|
|
- 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);
|
|
|
|
- }
|
|
|
|
|
|
+ SharedPreferences sharedPreferences;//淇濆瓨杈撳叆杩囩殑鍙风爜
|
|
|
|
+ EditText edt1, edt2;
|
|
|
|
+ TextView tv1, tv2;
|
|
|
|
+ Button btn1, btn2, btn3;
|
|
|
|
+ Thread thread;
|
|
|
|
+ int repeatCount = 0;
|
|
|
|
+ int amount;
|
|
|
|
+ String number, tag = "MainActivity";
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
+ super.onCreate(savedInstanceState);
|
|
|
|
+ setContentView(R.layout.activity_main);
|
|
|
|
+ edt1 = findViewById(R.id.edittext1);
|
|
|
|
+ edt2 = findViewById(R.id.edittext2);
|
|
|
|
+ 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);
|
|
|
|
+ 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涓�笉瀛樺湪璇�ey锛屽皢杩斿洖缂虹渷鍊�
|
|
|
|
+ Toast.makeText(getApplicationContext(),
|
|
|
|
+ "AutoCall鐜板湪甯︽偍鍘绘寕鏂�噸鎷�", Toast.LENGTH_SHORT).show();
|
|
|
|
+ amount = Integer.parseInt(edt2.getText().toString().trim());
|
|
|
|
+ end2doCall();
|
|
|
|
+ } else if (edt1.getText().toString().trim().length() <= 5) {
|
|
|
|
+ //涓嶆嫧鎵擄紝鎻愮ず杈撳叆鍙风爜閿欒�
|
|
|
|
+ Toast.makeText(getApplicationContext(),
|
|
|
|
+ "妫€娴嬪埌杈撳叆鐨勯潪鎵嬫満鍙风爜锛屽偦鐪间簡鍚э紵", Toast.LENGTH_SHORT).show();
|
|
|
|
+ } else {
|
|
|
|
+ Toast.makeText(getApplicationContext(), "浜诧紝鑷冲皯鎷ㄦ墦涓€娆″憖锛�",
|
|
|
|
+ Toast.LENGTH_SHORT).show();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ btn2.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涓�笉瀛樺湪璇�ey锛屽皢杩斿洖缂虹渷鍊�
|
|
|
|
+ amount = Integer.parseInt(edt2.getText().toString().trim());
|
|
|
|
+ if (thread == null) {
|
|
|
|
+ Toast.makeText(getApplicationContext(),
|
|
|
|
+ "AutoCall鐜板湪甯︽偍鍘昏嚜鍔ㄩ噸鎷�", Toast.LENGTH_SHORT).show();
|
|
|
|
+ thread = new Thread(new Runnable() {
|
|
|
|
+ @Override
|
|
|
|
+ public void run() {
|
|
|
|
+ // TODO Auto-generated method stub
|
|
|
|
+ handler.sendEmptyMessage(0);
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ thread.start();
|
|
|
|
+ Log.i(tag, "thread started");
|
|
|
|
+ } else {
|
|
|
|
+ Toast.makeText(getApplicationContext(), "鎮ㄦ�鍦ㄦ嫧鎵撶數璇濆憿锛�",
|
|
|
|
+ Toast.LENGTH_SHORT).show();
|
|
|
|
+ }
|
|
|
|
+ // autoCall();
|
|
|
|
+ } else if (edt1.getText().toString().trim().length() <= 5) {
|
|
|
|
+ //涓嶆嫧鎵擄紝鎻愮ず杈撳叆鍙风爜閿欒�
|
|
|
|
+ Toast.makeText(getApplicationContext(),
|
|
|
|
+ "妫€娴嬪埌杈撳叆鐨勯潪鎵嬫満鍙风爜锛屽偦鐪间簡鍚э紵", Toast.LENGTH_SHORT).show();
|
|
|
|
+ } else {
|
|
|
|
+ Toast.makeText(getApplicationContext(), "浜诧紝鑷冲皯鎷ㄦ墦涓€娆″憖锛�",
|
|
|
|
+ Toast.LENGTH_SHORT).show();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ btn3.setOnClickListener(new OnClickListener() {
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void onClick(View v) {
|
|
|
|
+ // TODO 鑷�姩鐢熸垚鐨勬柟娉曞瓨鏍�
|
|
|
|
+ Toast.makeText(getApplicationContext(), "鐜板湪鍋滄�鑷�姩閲嶆嫧锛�",
|
|
|
|
+ Toast.LENGTH_SHORT).show();
|
|
|
|
+ StopThread();
|
|
|
|
+ MainActivity.this.finish();
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ protected void end2doCall() {
|
|
|
|
+ // TODO 鑷�姩鐢熸垚鐨勬柟娉曞瓨鏍�
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ Handler handler = new Handler() {
|
|
|
|
+
|
|
|
|
+ @SuppressLint("HandlerLeak")
|
|
|
|
+ @Override
|
|
|
|
+ public void handleMessage(Message msg) {
|
|
|
|
+ super.handleMessage(msg);
|
|
|
|
+ if (repeatCount >= amount) {
|
|
|
|
+ StopThread();
|
|
|
|
+ tv2.setText("宸叉嫧鎵撴�鏁帮細\n" + repeatCount + "娆�");
|
|
|
|
+
|
|
|
|
+ } else {
|
|
|
|
+ RepeatDial();
|
|
|
|
+ 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) {
|
|
|
|
+ switch (state) {
|
|
|
|
+ case TelephonyManager.CALL_STATE_IDLE:
|
|
|
|
+ if (repeatCount <= amount && thread != null) {
|
|
|
|
+ repeatCount++;
|
|
|
|
+ Intent intent = new Intent(Intent.ACTION_CALL,
|
|
|
|
+ Uri.parse("tel:" + number));
|
|
|
|
+ startActivity(intent);
|
|
|
|
+
|
|
|
|
+ Toast.makeText(MainActivity.this, "姝e湪鎷ㄦ墦鐢佃瘽鈥�",
|
|
|
|
+ Toast.LENGTH_LONG).show();
|
|
|
|
+ } else {
|
|
|
|
+ StopThread();
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
|
|
+ case TelephonyManager.CALL_STATE_OFFHOOK:
|
|
|
|
+ break;
|
|
|
|
+ case TelephonyManager.CALL_STATE_RINGING:
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 鍏嶆彁
|
|
|
|
+ *
|
|
|
|
+ * @param context
|
|
|
|
+ */
|
|
|
|
+ public void toggleSpeaker(Context context) {
|
|
|
|
+ AudioManager am = (AudioManager) context
|
|
|
|
+ .getSystemService(Context.AUDIO_SERVICE);
|
|
|
|
+ am.setMode(AudioManager.MODE_IN_CALL);
|
|
|
|
+ am.setSpeakerphoneOn(!am.isSpeakerphoneOn());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private void StopThread() {
|
|
|
|
+ if (thread != null) {
|
|
|
|
+ //闇€瑕佽皟鐢ㄥ仠姝㈢嚎绋嬬殑interrupt()鏂规硶锛屽洜涓虹嚎绋嬫湁鍙�兘鍦╳ait()鎴杝leep(), 鎻愰珮鍋滄�绾跨▼鐨勫嵆鏃舵€�
|
|
|
|
+ thread.interrupt();
|
|
|
|
+ //涓嶅缓璁�娇鐢� thread.stop();
|
|
|
|
+ thread = null;
|
|
|
|
+ Log.i(tag, "thread stoped");
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void autoCall() {
|
|
|
|
+ //浼犲叆鏈嶅姟锛� parse锛堬級瑙f瀽鍙风爜
|
|
|
|
+ Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"
|
|
|
|
+ + number));
|
|
|
|
+ //閫氱煡activtity澶勭悊浼犲叆鐨刢all鏈嶅姟
|
|
|
|
+ MainActivity.this.startActivity(intent);
|
|
|
|
+ }
|
|
|
|
|
|
}
|
|
}
|