Android 模拟器 AVD 窗口大小

发布于 10-23 14:24 字数 147 浏览 9 评论 0原文

我的问题看起来很愚蠢,但我确实无法解决。

我正在使用 Eclipse 开发 Android 应用程序,但是当我运行模拟器 AVD 时,它有一个固定的窗口大小(在我的计算机屏幕上非常大),所以我看不到 Android 屏幕的其余部分。

你能帮助我吗?

My question seems to be stupid, but I really could not solve it.

I am using eclipse to develop android applications, but when I run the emulator AVD it has a fixed window size (very huge on my computer screen), so I can't see the rest of the Android screen.

Can you help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(11

九歌凝2024-10-30 14:24:10

如果模拟器的尺寸太大。您可以通过以下方式调整其大小:“

  1. 运行”>“运行配置
  2. 选择“目标”选项卡
  3. 向下滚动到其他模拟器命令行选项并输入:-scale 0.8 或其他数字

If the size of the emulator is too big. You can resize it by:

  1. Run > Run Configurations
  2. Pick the "Target" tab
  3. Scroll down to Additional Emulator Command Line Options and put in: -scale 0.8 or another number
流年里的时光2024-10-30 14:24:10

这里可以帮助您:

  • 菜单->窗口 -> Android SDK 和 AVD 管理器
  • 选择您的 AVD,然后选择编辑按钮
  • 皮肤行中,您选择HVGA作为内置或自定义尺寸分辨率。 HVGA

将允许模拟器适合您的屏幕。

Here can help you:

  • Menu -> Windows -> Android SDK and AVD manager
  • Choose your AVD then select Edit button
  • In line Skin you choose HVGA for built-in or custom your size resolution...

HVGA will allow the emulator to fit on your screen.

断舍离2024-10-30 14:24:10

输入这个命令

adb emu window scale 0.6

type this command

adb emu window scale 0.6
吻风2024-10-30 14:24:10

这对我有用:

  • 在 Eclipse 中,运行 Run ->运行配置。
  • 选择目标选项卡。
  • 在“其他模拟器命令行选项”字段中,输入“-skin 320x480”或其他适合您的分辨率。
  • 单击“应用”按钮。
  • 单击“运行”按钮。

我尝试了 -scale 0.8 选项,但效果不佳,因为虽然屏幕尺寸减小了,但颜色看起来像 8 位颜色......或更糟。它完全无法使用,因为闪光灯屏幕几乎全是白色的。

-skin 320x480 选项生成了一个适当大小的模拟器,没有图形问题。

Here's what worked for me:

  • In eclipse, go Run -> Run configurations.
  • Select the Target tab.
  • In the Additional Emulator Command Line Options field type -skin ­­320x480 or some other resolution appropriate for you.
  • Click "Apply" button.
  • Click the "Run" button.

I tried the -scale 0.8 option but it didn't work well because although the screen size was reduced, the color looked like 8 bit color... or worse. It was entirely unusable since the flash screen was almost entirely white.

The -skin ­­320x480 option produced an emulator of an appropriate size with no graphics issues.

dawn曙光2024-10-30 14:24:10
  1. 转到Android AVD 管理器并选择设备。

  2. 点击开始>>启动选项>>按实际尺寸缩放显示>>屏幕尺寸>> 6

  1. Go to Android AVD manager and chose the device.

  2. Click start >> Launch options >>> Scale display to real size >> screen size >> 6

无尽的现实2024-10-30 14:24:10

这是最简单的一个

  1. 转到运行
  2. 打开命令提示符
  3. 键入:telnet localhost 5554或telent localhost EMULATORID
  4. 然后你将得到Android控制台
  5. 键入此命令窗口比例0.7 code> 或 窗口比例 <0 到 1 的值>

如果您使用的是 Windows 7,那么您必须首先激活您的 telnet 客户端。
为此,请按照下列步骤操作:

  1. 转到控制面板,
  2. 下面有一个名为程序的图标,点击卸载程序即可。
  3. 然后单击屏幕最左侧的打开或关闭 Windows 功能
  4. 只需在 telnet 客户端上打勾,就会弹出一个列表
  5. 然后单击确定
  6. 要进行测试,请转到命令提示符并键入 telnet 如果您没有收到错误,则 telnet 正在工作

This is simplest one

  1. Go to Run
  2. Open command prompt
  3. Type: telnet localhost 5554 or telent localhost EMULATORID
  4. Then you will get Android console
  5. Type this command window scale 0.7 or window scale <value from 0 to 1>.

And if you are using Windows 7 then you have to first activate your telnet client.
for this follow these steps:

  1. Go to control panel
  2. There is icon named Programs below that Uninstall program is there click on it.
  3. Then click on the turn Windows features on or off at left most to your screen
  4. One list will be pop up just tick on the telnet client
  5. And then click on OK
  6. For testing go to command prompt and type telnet if you will not get error then telnet is working
第几種人2024-10-30 14:24:10

这将完全按照您想要的方式进行,即保留模拟器屏幕分辨率,同时允许您缩放模拟器窗口。

  • 选择菜单项Window/Android SDK and AVD Manager/Start选中
  • Scale display to real size,(然后您可以在中设置屏幕尺寸英寸)
  • 点击启动
  • 皮肤大小将按照您想要的方式显示,不会运行任何应用程序。等待启动完成。如果您尝试在皮肤启动期间启动应用程序,Eclipse 和 Windows 可能会不满意。
  • 启动您的应用程序(例如使用 F11)。
  • 您可能会看到一个有关连接到正在运行的模拟器的对话框。这样做。

This will do exactly what you would like to do, which is leave the emulator screen resolution alone while allowing you to scale the emulator window.

  • Select the menu item Window/Android SDK and AVD Manager/Start
  • Check Scale display to real size, (you can then set the screen size in inches on this page)
  • Click Launch.
  • The skin size the way you want it will appear, no app will be running. Wait for the launch to complete. Eclipse and Windows might not be not happy if you try to start your app during the skin launch.
  • Start your app (with F11 for instance).
  • You may get a dialog about attaching to a running emulator. Do so.
罪#恶を代价2024-10-30 14:24:10

对于 Android Studio(撰写本文时为 0.6.1):

  1. 单击“运行”>“编辑配置”
  2. 在左侧的“Android 应用程序”可扩展列表下选择要更改的模块 单击
  3. “模拟器”选项卡
  4. 确保选择“其他命令行选项”并键入: -scale 0.5
  5. 点击“确定”并运行您的应用程序!

For Android Studio (0.6.1 at time of writing):

  1. Click Run>Edit Configurations
  2. Select module you want to alter under 'Android Application' expandable list on left
  3. Click 'Emulator tab
  4. Make sure 'Additional command line options' is selected and type: -scale 0.5
  5. Hit 'OK' and run your app!
铃予2024-10-30 14:24:10

Android Studio 的一个简单解决方案是:
- 启动广告管理器
- 选择您想要的模拟器系列
- 点击右侧的编辑按钮(铅笔)
- 在打开的配置屏幕中间有一个“比例”单选字段 - 选择您喜欢的设备和屏幕之间的比例。我选择了“设备上 4dp = 屏幕上 1px”,结果尺寸正是我想要的(使用 Nexus 5)。
- 点击完成

A simple solution with Android Studio is:
- launch the adv manager
- Select the emulator line you want
- hit the edit button on the right (a pencil)
- In the middle of the configuration screen that opens there is a Scale radio field - choose the ratio between device and screen that you prefer. I have chosen "4dp on device = 1px on screen" and the resulting size is just what I wanted (using Nexus 5).
- Hit Finish

嘿咻2024-10-30 14:24:10
Run configurations-> target-> Addition emulator command text box 
write
"scale 0.6"
(without quotes)
Run configurations-> target-> Addition emulator command text box 
write
"scale 0.6"
(without quotes)
你怎么敢2024-10-30 14:24:10

在linux中很容易
怎么做我从命令行启动Android模拟器?

你需要在最后添加这个“-scale 0.45”
例如: /home/hackro/Documentos/Software/adt-bundle-linux-x86_64-20140702/sdk/tools/emulator64-x86 -avd Android5.1.1 -scale 0.45

我的菜单中有快捷方式linux 的并且它们工作得很好

in linux is easy
How do I launch the Android emulator from the command line?

you need to add at the end this "-scale 0.45"
for example: /home/hackro/Documentos/Software/adt-bundle-linux-x86_64-20140702/sdk/tools/emulator64-x86 -avd Android5.1.1 -scale 0.45

I have shortcuts in my menu of the linux and they work well

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文