For Android game development we have to think like the IPhone. Compatible with the Android tablet, Apple has to consider compatibility between screens such as the ipad, iphone 3GS and iphone 4, which is no exception to the Android game, with more models to consider.
Conventionally we may only consider QVGA,HVGA,WVGA,FWVGA and DVGA, but without the mobile phone, it may be that the tablet uses similar WSVGA 1024x576 and WXGA 1280x768 and so on.
QVGA = 320 * 240;
WQVGA = 320 * 480;
WQVGA2 = 400 * 240;
WQVGA3 = 432 * 240;
HVGA = 480 * 320;
VGA = 640 * 480;
WVGA = 800 * 480;
WVGA2 = 768 * 480;
FWVGA = 854 * 480;
DVGA = 960 * 640;
PAL = 576 * 520;
NTSC = 486 * 440;
SVGA = 800 * 600;
WSVGA = 1024 * 576;
XGA = 1024 * 768;
Xgaplus = 1152 * 864;
HD720 = 1280 * 720;
WXGA = 1280 * 768;
WXGA2 = 1280 * 800;
WXGA3 = 1280 * 854;
SXGA = 1280 * 1024;
WXGA4 = 1366 * 768;
Sxgaminus = 1280 * 960;
Sxgaplus = 1400 * 1050;
Wxgaplus = 1440 * 900;
HD900 = 1600 * 900;
WSXGA = 1600 * 1024;
Wsxgaplus = 1680 * 1050;
UXGA = 1600 * 1200;
HD1080 = 1920 * 1080;
QWXGA = 2048 * 1152;
WUXGA = 1920 * 1200;
TXGA = 1920 * 1400;
QXGA = 2048 * 1536;
WQHD = 2560 * 1440;
WQXGA = 2560 * 1600;
QSXGA = 2560 * 2048;
Qsxgaplus = 2800 * 2100;
WQSXGA = 3200 * 2048;
QUXGA = 3200 * 2400;
QFHD = 3840 * 2160;
WQUXGA = 3840 * 2400;
hd4k = 4096 * 2304;
HXGA = 4096 * 3072;
WHXGA = 5120 * 3200;
HSXGA = 5120 * 4096;
WHSXGA = 6400 * 4096;
HUXGA = 6400 * 4800;
SHV = 7680 * 4320;
WHUXGA = 7680 * 4800;
For a high resolution tablet in Android games, resources can consider a mandatory absolute layout to ensure full screen display, while the multiple resolutions on the phone use relative layout more reasonable.