为什么Android NDK中的屏幕分辨率错误?

时间:2014-07-10 10:46:45

标签: android-ndk resolution

我得到了这样的决议:

    // ... other standard includes ...
#include <sys/ioctl.h>
#include <linux/fb.h>

//...

struct fb_var_screeninfo fb_var;
int fd = open("/dev/graphics/fb0", O_RDONLY);
ioctl(fd, FBIOGET_VSCREENINFO, &fb_var);
close(fd);
// screen size will be in fb_var.xres and fb_var.yres

当屏幕没有主页,后退和菜单按钮时,这是正确的。

enter image description here

但这3个按钮是错误的。

0 个答案:

没有答案