воскресенье, 25 сентября 2011 г.
вторник, 20 сентября 2011 г.
Google I/O 2010 - Writing real-time games for Android redux - YouTube
п.с. Replica Island - мега-крутая опенсоурс игра!
понедельник, 19 сентября 2011 г.
Как программно узнать разрешение экрана. Android
Вот несколько способов как это сделать:
DisplayMetrics - A structure describing general information about a display, such as its size, density, and font scaling.
DisplayMetrics - A structure describing general information about a display, such as its size, density, and font scaling.
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
Log.d("Resolution", "resolution: "+metrics.widthPixels+" x "+ metrics.heightPixels);
И с помощью Display
Display display = getWindowManager().getDefaultDisplay();
Log.d("Resolution", "resolution: "+display.getWidth()+" x "+ display.getHeight());
четверг, 8 сентября 2011 г.
Подписаться на:
Сообщения (Atom)