Two circle on android AVD screen - android

There is two circle on screen every time i long click on screen. i have no idea what is this?
is it possible to disable this?

Zoom Icon on the virtual device menu
I had the same problem when the green circles appear and won't go away I just pressed the zoom button on the Virtual device menu the appears next to the device so you just need to enter the zoom mode then exit and the glitch is gone

As a workaround : Setting->General->send keyboard shortcuts to -> vritual device solved the issue

This is the multi-touch functionality.
Use F1 to see the setting in emulator

For me it seems the problem is with Desktop app.
I am using Linux Mint and after clicking on Ctrl-Alt-F1 the stacked multi-touch was gone.

Related

Hardware buttons is not clickable in Android emulator

I work in Android Studio 1.0 RC 2 and I have an Android Emulator with Intel HAXM. The emulator is running normally. It shows the hardware buttons, but this buttons is not clickable. The AVD configuration is default for Nexus S, but it's scale is 0.5.
It shows the hardware buttons, but this buttons is not clickable
If it shows HOME and BACK in the navigation bar, then they are not "the hardware buttons". That is the navigation bar. For actual "hardware" HOME and BACK buttons, you should not see anything, and the are mapped to Home and Esc respectively on your development machine's keyboard.
Go into the actual configuration file for your AVD. On OS X and Linux, that normally is ~/.android/avd/.../config.ini, where ... is based on the name of your AVD. See what your hw.mainKeys value is. For "hardware" HOME and BACK buttons, hw.mainKeys should be yes; for a navigation bar with HOME and BACK buttons, hw.mainKeys should be no.
Based on #CommonsWare comment
#Plugie: I never use those skins, and I am not aware that those buttons are ever supposed to be clickable.
I recommend to set hw.mainKeys=no
Go into the actual configuration file for your AVD. On OS X and Linux, that normally is ~/.android/avd/.../config.ini, where ... is based on the name of your AVD. See what your hw.mainKeys value is
After set hw.mainKeys=no, it will show System Bar which can be seen in screen shoot which red rectangle. Then you can navigate BACK, HOME using System Bar instead of Hardware Button
You'll probably need to change some of your emulator settings in order to do that. Change the skin to 'Skin with dynamic hardware controls' and make sure the 'hardware keyboard present' checkbox is checked. Not sure if this is the solution, but give it a try.
For me it required a little more work. In short, avd creates android image incorrectly, setting dPad and mainKey to "no". This post helped
http://ridz1ba.blogspot.ru/2012/12/android-virtual-devices-avd-problem-on.html
Beware that the emulator of Lollipop or Jellybean doesn't auto update the display (tested on Chipmunk) so pressing any buttons will look like they are not clickable unless you refresh the display by clicking other tabs such as Device Manager. I run Marshmallow (x86_64 Google APIs on Chipmunk) and all buttons respond to click.

How to kill the softkeyboard from flash player

I needed a way to invoke softkeyboard in android platforms, and i got to know how to do it form here Flash APIs for Android Platform. Now i need to kill the keyboard, basically there is a button which i want to use to toggle the keyboard. Flash has provided a way to invoke the keyboard but not to kill it.(never understood how they work). One more issue is that when i click the down button on softkeyboard which is located on bottom left of the screen, the Softkeyboard_Deactivate event is not fired. It seems its fired only when the focus shifts from one object to another.
So what should be done ?
OK so it seems if you just set the "stage.focus = null" it will lower the keyboard. It came out of the blue to me to try this and worked like a charm.
Im not sure if this will work and this is a bit of a hack but on the hide button click you could set focus to an off screen textfield which has its needsSoftKeyboard property set to false.
I dont have an android phone so im unable to test that this works from here.

Android avd is off-screen

When I run my Android app in Eclipse I can see the emulator on the toolbar but the window appears to be off the screen. Clicking on the icon in the toolbar makes it flash in or out from the right but I cannot see it.
I have had this problem before but I cannot remember how I resolved it.
You could try this.
or
(Windows 7 only)
Hover over the window icon in the task bar so that the preview appears, right click on the preview and select "move." You should then be able to move the window with the arrow keys. You may have to hold down the arrow key for what seems to be a very long time.
As dell116 said:
Hover over the window icon in the task bar so that the preview
appears, right click on the preview and select "move." You should then
be able to move the window with the arrow keys.
But as soon as you have used one of the arrow keys, then move the mouse, and... voilĂ , the window turns up in front of us, just following the mouse movements. Place the window where you want and click the mouse's left button to release it.
None of the tricks here worked for me. What I had to do was in Windows right click background (desktop) select screen resolution. From there change the resolution to a smaller resolution. The window provided me with the window bar that was cut off, simply drag like normal. After I got it where I got it where I wanted it, I just changed the resolution back.
You can also right click on taskbar->properties change Taskbar location on screen to something else, Apply, and then you can set it back this will put your windows on screen.
Another one is right clicking on the taskbar->Cascade windows - this will put every window together in cascading order which is annoying but it does guarantee all windows will go on the screen.
In Windows 10,I faced the same problem. My solution is like that;
Start Android Studio
Select the Android Studio from ALT+TAB Menu(If'nothing happens,just relax :) )
Now press ALT + Space combination
Click Maximize
Now you may use the ide :)))
I faced the exact same problem. I tried the solutions suggested by Daniel and dell116. At first it did not work as the "Move" option seems to be disabled. However, during my final attempt it worked. I found out that you can only use this method only when the OS is starting up (i.e. when it is showing the android logo).
Good news is that after doing this once, it will stay in the desired position for future runs.

Android Layout, move window

Maybe you remember the draggable window in android donut. You have something like a tab. If you tap on this tab with your finger a window slides up an reveals all the applications that are installed on your android phone.
Has anyone an idea how to realize this in a layout?
I am looking for this...SlidingDrawer

How to change the image of my button on pointing my mouse over it?

In the emulator on touching my button I want its image to be changed. I just want to bring my mouse pointer there, without click. This can be observed for thr keys of the emulator. On touch a blue image appears on the keys.
You can use a Selector.
Check this tutorial.
There is no mouse in Android - hence there is no mouse-over, so the effect which you mentioned regarding the emulator keys is not applicable for Android applications
You could just react on focused and pressed events

Categories

Resources