How to keep android emulator always on top in ubuntu 14.04

南楼画角 提交于 2019-12-03 12:13:35

问题


How to keep android emulator always on top in ubuntu 14.04 I am using Android Studio 2.1.1 and emulator version of 25.1.6 It was working before updating Android SDK Tools to 25.1.6.


回答1:


I had the same issue. I solved it like below:

First of all be aware that emulator has two different windows that are attached to each other.

  1. Right Click emulator top bar, and set it as always on top
  2. Right Click emulator icon on the dash, and choose "Emulator" this time use shortcut ALT + SPACE to reveal context menu and again choose always on top.

And that's it!

Note : every time you minimizes emulator window, do steps above again.




回答2:


Fast way in terminal (toggle always_on_top):

wmctrl -i -r $(wmctrl -l | grep ' Android Emulator - ' | sed -e 's/\s.*$//g') -b toggle,above
wmctrl -i -r $(wmctrl -l | grep ' Emulator$' | sed -e 's/\s.*$//g') -b toggle,above



回答3:


on active widow emulator, press ALT + SPACE, select always on top



来源:https://stackoverflow.com/questions/37383611/how-to-keep-android-emulator-always-on-top-in-ubuntu-14-04

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!