在Android Studio 4.1及更高版本中,模拟器的侧边栏默认隐藏。如果需要在Android Studio中启用模拟器侧边栏,则需要进行以下操作:
打开Android Studio的配置文件'idea.properties”(Windows下路径为C:\Users\用户名.AndroidStudio4.x\config\idea.properties)。
在该文件末尾添加以下内容:
emulator.enableSidebar = true
保存并关闭'idea.properties”文件。
重启Android Studio。
在重启Android Studio后,启动模拟器时将会显示侧边栏,其中包含调试信息和其他工具。这也可以通过以下代码在模拟器中启用侧边栏:
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.R) { android.os.SystemProperties.set("debug.development_settings_enabled", "1"); } Intent intent = new Intent("com.android.emulator.sidebar.SET_VISIBILITY"); intent.putExtra("visible", true); sendBroadcast(intent);