adb命令操作手机各种开关

打开iqoo手机热点设置

复制代码
adb shell am start -n com.android.settings/com.android.settings.Settings$\VivoTetherSettingsActivity

蓝牙模块


检查蓝牙状态的ADB命令

检查蓝牙开关状态
bash 复制代码
adb shell settings get global bluetooth_on

开启和关闭蓝牙

使用Intent操作蓝牙(可能会弹出请求提示框)
开启蓝牙
bash 复制代码
adb shell am start -a android.bluetooth.adapter.action.REQUEST_ENABLE
关闭蓝牙
bash 复制代码
adb shell am start -a android.bluetooth.adapter.action.REQUEST_DISABLE

检查蓝牙详细信息

bash 复制代码
adb shell dumpsys bluetooth

获取已配对设备列表

bash 复制代码
adb shell service call bluetooth_manager 6

开启蓝牙扫描(发现新设备)

bash 复制代码
adb shell am startservice -n com.android.bluetooth/.btservice.AdapterService --es command start_discovery

停止蓝牙扫描

bash 复制代码
adb shell am startservice -n com.android.bluetooth/.btservice.AdapterService --es command cancel_discovery

连接到蓝牙设备(需要目标设备的MAC地址)

bash 复制代码
adb shell am startservice -n com.android.bluetooth/.btservice.AdapterService --es command connect --es device XX:XX:XX:XX:XX:XX

断开蓝牙设备(需要目标设备的MAC地址)

bash 复制代码
adb shell am startservice -n com.android.bluetooth/.btservice.AdapterService --es command disconnect --es device XX:XX:XX:XX:XX:XX

设置蓝牙设备可见时间

bash 复制代码
adb shell am start -a android.bluetooth.adapter.action.REQUEST_DISCOVERABLE --ei android.bluetooth.adapter.extra.DISCOVERABLE_DURATION 300

获取蓝牙MAC地址

bash 复制代码
adb shell service call bluetooth_manager 10

检查蓝牙状态(详细信息)

bash 复制代码
adb shell dumpsys bluetooth_manager | grep 'enabled:'

直接调用蓝牙管理器

bash 复制代码
adb shell service call bluetooth_manager 6  # 打开蓝牙
adb shell service call bluetooth_manager 8  # 关闭蓝牙

使用Root权限操作蓝牙(无需弹出提示框)

开启蓝牙
bash 复制代码
adb root
adb shell "svc bluetooth enable"
关闭蓝牙
bash 复制代码
adb root
adb shell "svc bluetooth disable"

编写具有系统权限的Android应用程序操作蓝牙

1. 在AndroidManifest.xml中添加权限
xml 复制代码
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.bluetoothcontrol">

    <uses-permission android:name="android.permission.BLUETOOTH"/>
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
    <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
    
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>
2. 在MainActivity中添加蓝牙控制代码
java 复制代码
import android.bluetooth.BluetoothAdapter;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import androidx.appcompat.app.AppCompatActivity;

public class MainActivity extends AppCompatActivity {
    private BluetoothAdapter bluetoothAdapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
        Button enableButton = findViewById(R.id.enableButton);
        Button disableButton = findViewById(R.id.disableButton);

        enableButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                enableBluetooth();
            }
        });

        disableButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                disableBluetooth();
            }
        });
    }

    private void enableBluetooth() {
        if (bluetoothAdapter != null && !bluetoothAdapter.isEnabled()) {
            bluetoothAdapter.enable();
        }
    }

    private void disableBluetooth() {
        if (bluetoothAdapter != null && bluetoothAdapter.isEnabled()) {
            bluetoothAdapter.disable();
        }
    }
}
3. 添加按钮到布局文件
xml 复制代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="16dp">

    <Button
        android:id="@+id/enableButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Enable Bluetooth" />

    <Button
        android:id="@+id/disableButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Disable Bluetooth" />

</LinearLayout>
4. 编译并安装具有系统权限的应用程序
  • 将应用程序签名为系统应用(这通常需要访问设备的系统签名密钥)。
  • 将应用程序安装到设备上的系统分区中(通常需要root权限)。

使用Tasker和AutoInput插件(需Root权限)

安装Tasker和AutoInput插件
  • 从Google Play商店安装Tasker和AutoInput插件。
创建Tasker任务
  • 创建一个新的Tasker任务,使用AutoInput插件自动点击"允许"按钮。
触发Tasker任务
  • 设置触发器,例如通过ADB命令触发Tasker任务来开启或关闭蓝牙。

热点模块


方法一:

复制代码
adb shell am start -n com.android.settings/com.android.settings.Settings$\VivoTetherSettingsActivity
相关推荐
limingade2 小时前
手机打电话通话时如何向对方播放录制的IVR引导词声音
android·智能手机·蓝牙电话·手机提取通话声音
非凡ghost10 小时前
LSPatch官方版:无Root Xposed框架,自由定制手机体验
android·智能手机·软件需求
Lonwayne1 天前
手机端本地服务与后端微服务的技术差异
微服务·智能手机·架构·程序那些事
东风西巷1 天前
Control Center安卓版:自定义控制中心,提升手机操作体验
android·智能手机·性能优化·软件需求
双翌视觉1 天前
机器视觉的智能手机屏贴合应用
智能手机·机器视觉·视觉软件
何玺2 天前
从“堆料竞赛”到“体验深耕”,X200 Ultra和X200s打响手机价值升维战
数码相机·智能手机
AscendKing3 天前
电脑安装adb并且连接华为手机mate60pro后查看设备
adb·智能手机
东风西巷3 天前
黑阈免激活版:智能管理后台,优化手机性能
智能手机·性能优化·软件需求
非凡ghost3 天前
超级扩音器手机版:随时随地,大声说话
android·人工智能·智能手机·语音识别·软件需求
云天徽上3 天前
【机器学习案列-21】基于 LightGBM 的智能手机用户行为分类
人工智能·机器学习·智能手机·分类·数据挖掘