↧
XML - Tablet support in AndroidManifest
Lets you specify the screen sizes your application supports and enable screen compatibility mode for screens larger than what your application supports. It's important that you always use this element...
View ArticleC - Is a jpg/jpeg file?
int Is_JPEG(char head[]) { if(head[0] == -1 && head[1] == -40 && head[2] == -1 && head[3] == -32) return 1; else if(head[0] == -1 && head[1] == -40 && head[2] ==...
View Article