在 Eclipse 中调整 Android 模拟器屏幕大小
Re-size Android emulator screen in Eclipse
我正在使用 Eclipse 开发新应用程序,我在 Android 模拟器中遇到屏幕尺寸问题。即使我创建了一个新的模拟器,屏幕尺寸也会如图所示放大。我无法调整它的大小。即使在搜索之后我也找不到任何解决方案。
您不能像使用 window 那样调整模拟器的大小。相反,您可以在 AVD 设置中或通过 adb 命令对其进行缩放。单击 AVD 的开始按钮后,您可以在下一个屏幕(启动选项)中看到它。参见 How to resize the AVD emulator in Android Studio?。
Run > Run Configurations
Pick the "Target" tab
Scroll down to "Additional Emulator Command Line Options" and put in: "-scale 0.7" or another number
这将保持 AVD 缩放,即使它是由 Eclipse 自动启动的。
试试这个
我正在使用 Eclipse 开发新应用程序,我在 Android 模拟器中遇到屏幕尺寸问题。即使我创建了一个新的模拟器,屏幕尺寸也会如图所示放大。我无法调整它的大小。即使在搜索之后我也找不到任何解决方案。
您不能像使用 window 那样调整模拟器的大小。相反,您可以在 AVD 设置中或通过 adb 命令对其进行缩放。单击 AVD 的开始按钮后,您可以在下一个屏幕(启动选项)中看到它。参见 How to resize the AVD emulator in Android Studio?。
Run > Run Configurations
Pick the "Target" tab
Scroll down to "Additional Emulator Command Line Options" and put in: "-scale 0.7" or another number
这将保持 AVD 缩放,即使它是由 Eclipse 自动启动的。
试试这个