Browse Source

增加call权限检测

liuyuqi-dellpc 1 year ago
parent
commit
66b2be5103

+ 3 - 3
app/build.gradle

@@ -1,12 +1,12 @@
 apply plugin: 'com.android.application'
 
 android {
-    compileSdkVersion 33
+    compileSdk 33
 
     defaultConfig {
-        applicationId "me.yoqi.android.backup"
+        applicationId "me.yoqi.android.autocall"
         minSdkVersion 21
-        targetSdkVersion 33
+        targetSdkVersion 30
         versionCode 10001
         versionName "1.0.1"
 

+ 1 - 0
app/src/main/AndroidManifest.xml

@@ -5,6 +5,7 @@
     <!-- 电话服务添加 -->
     <uses-permission android:name="android.permission.CALL_PHONE" />
     <uses-permission android:name="android.permission.READ_PHONE_STATE" />
+    
     <!-- 开免提 -->
     <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
 

+ 38 - 33
app/src/main/java/com/lyq/autocall/MainActivity.java

@@ -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);
-    }
-
 }

+ 1 - 1
app/src/main/java/com/lyq/autocall/ManageCall.java → app/src/main/java/com/lyq/autocall/utils/ManageCall.java

@@ -1,4 +1,4 @@
-package com.lyq.autocall;
+package com.lyq.autocall.utils;
 
 import android.content.Context;
 import android.media.AudioManager;

+ 13 - 9
app/src/main/res/layout/activity_main.xml

@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="match_parent">
@@ -13,28 +14,28 @@
         android:textColor="#e31111" />
 
     <EditText
-        android:id="@+id/edittext1"
+        android:id="@+id/edtPhone"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_below="@+id/textview1"
         android:layout_centerInParent="true"
         android:ems="10"
         android:gravity="center"
-        android:inputType="number"
+        android:inputType="phone"
         android:textStyle="normal" />
 
     <TextView
         android:id="@+id/textview12"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
-        android:layout_below="@+id/edittext1"
+        android:layout_below="@+id/edtPhone"
         android:layout_centerHorizontal="true"
         android:gravity="center"
         android:text="输入重拨次数:"
         android:textColor="#54f15f" />
 
     <EditText
-        android:id="@+id/edittext2"
+        android:id="@+id/edtNum"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_below="@+id/textview12"
@@ -49,7 +50,7 @@
         android:id="@+id/checkBox1"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
-        android:layout_below="@+id/edittext2"
+        android:layout_below="@+id/edtNum"
         android:layout_centerHorizontal="true"
         android:checked="true"
         android:text="开免提" />
@@ -82,7 +83,8 @@
             android:text="停止重拨" />
     </LinearLayout>
 
-    <Button
+    <TextView
+        android:id="@+id/tv_auto_call_use"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_below="@+id/linearLayout1"
@@ -90,11 +92,13 @@
         android:background="#7708bd"
         android:text="挂断重拨(骚扰):隔5s挂断后拨打一次" />
 
-    <Button
-        android:id="@+id/button4"
+    <TextView
+        android:id="@+id/tv_auto_call_guaduan"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
+        android:layout_below="@+id/tv_auto_call_use"
         android:layout_centerHorizontal="true"
+        android:layout_marginTop="5dp"
         android:background="#86efb2"
         android:text="自动重拨(实用):拨打未通则继续打. " />
 
@@ -102,7 +106,7 @@
         android:id="@+id/textview2"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
-        android:layout_below="@+id/button4"
+        android:layout_below="@+id/tv_auto_call_guaduan"
         android:layout_centerHorizontal="true"
         android:gravity="center"
         android:text="已拨打次数:\n0次"