123456789101112131415161718public void surfaceCreated(SurfaceHolder _holder){ // TODO:: Auto-generated method stub try { // 일단 스레드를 실행해 본다. mThread.setRunning(true); mThread.start(); } catch (Exception e) // 안되면... { // 스레드를 다시 만들고 실행한다. (====> 포커스를 잃었을때 스레드를 다시 실행시키는 방법) mThread = null; mThread = new cGameViewThread(getHolder(), this); mThread.setRunning(true); mThread.start(); } Colored by Col..
123456789101112131415/** ldpi(120dpi /기타 소형단말기) : 240 x 320 * mdpi(160dpi/G1, 옵티머스원): 320 x 480 * mdpi(160dpi/G1, 갤럭시 탭 7.0,):600 x 1024 * mdpi(160dpi/G1, 모토롤라 Xoom 10,갤럭시탭 7.7 & 10.1):1280 x 800 * hdpi(240dpi / 갤럭시 S/S2) : 480 x 800 * hdpi(240dpi / 모토로라 드로이드, XPERIA X10) : 480 x 854 * xhdpi(320dpi / 갤럭시 S3/노트II ) : 720 x 1280 * xhdpi(320dpi / 삼성 갤럭시 넥서스 ) : 720 x 1194 or 1280 * xhdpi(320dpi / 삼..
Activity Class를 만든다. 12345678910111213141516public class cGameStartPopup extends Activity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams(); layoutParams.flags = WindowManager.LayoutParams.FLAG_DIM_BEHIND; layoutParams.dimAmou..
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677package FrameWork; /** * Created by AVG on 2015-09-20. */public class cFPS{ private int mDrawPerSec; // 1초에 그려줄 프레임 개수 private int mFPS; // 초당 프레임 private long mFrameTimer; // 누적 시간량 public cFPS() { mDrawPerSec = 0; mFPS = 0; mFrameTimer = 0; } public c..
String inTime; txtTime = (TextView)findViewById(R.id.time); //inTime = new java.text.SimpleDateFormat("HHmmss").format(new java.util.Date()); //inTime = new java.text.SimpleDateFormat("yyyyMMdd").format(new java.util.Date()); inTime = new java.text.SimpleDateFormat("HH").format(new java.util.Date()); txtTime.setText(inTime);
Google Developersgoogle Developers에 접속하여 key를 발급 받는다.https://developers.google.com/places/web-service/ 초기 설정1234567891011121314151617181920212223242526272829303132333435363738public class cGPlacesAPI{ Context mContext; StringBuilder mResponseBuilder = new StringBuilder(); LinkedList mList = new LinkedList(); cGPlacesAPI(Context _con, double _lat, double _lon, double _radius, String _type) { mCon..