Browse Source

1.默认设置usb模式为充电。

20241218TB223FC(测试jar包)
wangwanlei 6 months ago
parent
commit
048f9899f3

+ 16
- 0
app/src/main/java/com/xhly/manageapp/ManageApplication.kt View File

548
         fun enableUsbDebugging(enableFlag: Boolean) {
548
         fun enableUsbDebugging(enableFlag: Boolean) {
549
             if (ModelNameUtils.IS_LianxX505f() || ModelNameUtils.IS_LianxX6e6f()) {
549
             if (ModelNameUtils.IS_LianxX505f() || ModelNameUtils.IS_LianxX6e6f()) {
550
                 csdkManager?.enableUsbDebugging(enableFlag)
550
                 csdkManager?.enableUsbDebugging(enableFlag)
551
+                if (ModelNameUtils.IS_LianxX505f()){
552
+                    //关闭usb调试时设置为充电模式
553
+                    if (!enableFlag){
554
+                       setCurrentUsbMode(0)
555
+                    }
556
+                }
557
+            }
558
+        }
559
+
560
+        /**
561
+         * 将 设置USB模式 0 充电
562
+         */
563
+        fun setCurrentUsbMode(type:Int=0){
564
+            if (ModelNameUtils.IS_LianxX505f()){
565
+                //关闭usb调试时设置为充电模式
566
+                csdkManager?.setCurrentUsbMode(type)
551
             }
567
             }
552
         }
568
         }
553
 
569
 

+ 2
- 0
app/src/main/java/com/xhly/manageapp/utils/StrategyUtils.kt View File

442
             //默认打开wifi禁止用户关闭
442
             //默认打开wifi禁止用户关闭
443
            // ManageApplication.disallowWifi(true)
443
            // ManageApplication.disallowWifi(true)
444
             ManageApplication.enableWifi(true)
444
             ManageApplication.enableWifi(true)
445
+            //设置USb模式为充电
446
+            ManageApplication.setCurrentUsbMode(0)
445
             //禁止状态栏下拉,屏蔽底部虚拟键。
447
             //禁止状态栏下拉,屏蔽底部虚拟键。
446
             ManageApplication.disableStatusBarPanel(true)
448
             ManageApplication.disableStatusBarPanel(true)
447
             ManageApplication.hideHomeSoftKey(true)
449
             ManageApplication.hideHomeSoftKey(true)

Loading…
Cancel
Save