How to create 7\" Tablet (1280 * 800) Screen Resolution Emulator in Android?

时光毁灭记忆、已成空白 提交于 2019-12-04 06:23:53

Modify

Abstracted LCD Density

So, if you have same number of pixels with more screen density, it's got to be a smaller screen.

The formula is:

DENSITY = sqrt (x^2+y^2)/d where d is the diagonal in inches.

So, supposing you want a d=7", then you need a density of:

Density=sqrt(1280x1280+800*800)/7 = 215'6339

So, fix the ABSTRACTED LCD DENSITY to 216 and there you are.

Had this issue ..But with android 4.1 we can create an AVD that has option WXGA800-7in (1280x800, high density, large screen) : Reference: http://developer.android.com/tools/revisions/platforms.html

Once you create new emulator, take a look at Screen Resolution Field in the dialog box. Set your desired resolution. Now before starting the emulator Check and specify size.. Hope this helped you.

Edit Take a look at snap shot..

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