Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Emulate Android Phone on Android Tablet

I wonder if there is some kind of tool to emulate Android handys on an android tablet. I would like to use it for developing games for android platforms and to check size and resolution issues.

Of course there are different simulators running on PC, but it would be helpful to simulate the behaviour on the nexus tablet.

Thanks

like image 666
Typ127 Avatar asked Jun 06 '26 23:06

Typ127


1 Answers

Yes, you can to this on some devices. It's especially useful on the Nexus 10 because it has a large screen and a really high density. You can use ADB to force it to emulate other resolutions and display densities. It's perfect for testing alternate layout and drawable resources.

For instance, you could force it to behave similar to a G1 by doing this:

adb shell am display-size 640x480
adb shell am display-density 160

Make sure the screen is turned off when sending these commands and clear them by replacing the size/density with "reset"

adb shell am display-size reset
adb shell am display-density reset

https://plus.google.com/+AdamWPowell/posts/cz5TxuoNDfG

like image 115
Krylez Avatar answered Jun 09 '26 12:06

Krylez



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!