How to create a Samsung Galaxy Note emulator in Android AVD?

I want to create a Samsung Galaxy Note virtual device (version 2.3.6) in an AVD manager with a resolution of 800 * 1280. How can I do this?

+6
source share
4 answers

I do not think that you can create an emulator with version 2.3.6, but you can do it with version 2.3.3 and a screen size of 800 * 600.

go to AVD Manager> Create ... and fill out the screen as follows:
Name: galaxyNote
Target: Android 2.3.3 - API Level 10
SD Card: 256 MiB
Leather: 800 * 1280

then click on create AVD. done.

+7
source

Leather: (800x1200 + Density 320)

+2
source

In case this is useful ... According to Samsung, the display for Note II is as follows: note that the density value is an important factor and should also be set in the emulator configuration

  • heightPixels = 1280
  • widthpPixels = 720
  • Dpi Density = 320 ("Abstract LCD Density")

http://developer.samsung.com/forum/thread/emulator-size-for-galaxy-note-2-/77/178557

For reference, the pixel density for them:

  ldpi |  mdpi |  tvdpi |  hdpi |  xhdpi |  xxhdpi
 120 |  160 |  213 |  240 |  320 |  480

I copied the above from this link, which has tons of other good info about Android image and size

+1
source

http://developer.samsung.com/remotetestlab/rtlDeviceList.action

Enjoi :)

This is a site for using the emulator for 30 minutes-2 hours

0
source

Source: https://habr.com/ru/post/908292/


All Articles