ex)
BoxCollider col = gameObject.collider as BoxCollider;
col.size = new Vector3(col.size.z, col.size.y, col.size.x);
col.center = new Vector3(-col.size.x/2.0f, col.size.y/2.0f, col.size.z/2.0f);
그만자자
2012년 11월 13일 화요일
2012년 6월 21일 목요일
[Android] application이 background에 있는지 확인...
public static boolean isApplicationInBackground(Context context)
{
ActivityManager am =
(ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
List<RunningTaskInfo> tasks = am.getRunningTasks(1);
if (!tasks.isEmpty())
{
ComponentName topActivity = tasks.get(0).topActivity;
if (!topActivity.getPackageName().equals(context.getPackageName()))
{
return true;
}
}
return false;
}
출처:
http://stackoverflow.com/questions/3236746/determining-if-app-is-running-in-background
2012년 6월 13일 수요일
[Android] exit 확인창 출력
Back key를 눌렀을때, 종료 확인창을 출력..
한번 더누르면 종료 처리..
@Override
protected Dialog onCreateDialog(int id) {
switch(id)
{
case DIALOG_QUIT:
return new AlertDialog.Builder(this)
.setMessage("Are you sure you want to leave the game?")
.setPositiveButton("YES", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
finish();
}
})
.setNegativeButton("NO", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
})
.setOnKeyListener(new DialogInterface.OnKeyListener() {
@Override
public boolean onKey (DialogInterface dialog, int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK && event.getAction() == KeyEvent.ACTION_UP && !event.isCanceled()) {
dialog.dismiss();
finish();
return true;
}
return false;
}
}).create();
//break;
default:
break;
}
return null;
}
한번 더누르면 종료 처리..
@Override
protected Dialog onCreateDialog(int id) {
switch(id)
{
case DIALOG_QUIT:
return new AlertDialog.Builder(this)
.setMessage("Are you sure you want to leave the game?")
.setPositiveButton("YES", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
finish();
}
})
.setNegativeButton("NO", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
})
.setOnKeyListener(new DialogInterface.OnKeyListener() {
@Override
public boolean onKey (DialogInterface dialog, int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK && event.getAction() == KeyEvent.ACTION_UP && !event.isCanceled()) {
dialog.dismiss();
finish();
return true;
}
return false;
}
}).create();
//break;
default:
break;
}
return null;
}
2012년 6월 12일 화요일
[Android] (JNI) native function name...
Native function Name:
[return value]_[package name]_[class name]_[function name](...)
ex:
jstring Java_com_jj_example_HelloWorldActivity_stringFromJNI(JNIEnv* env, jobject thiz)
[return value]_[package name]_[class name]_[function name](...)
ex:
jstring Java_com_jj_example_HelloWorldActivity_stringFromJNI(JNIEnv* env, jobject thiz)
2012년 6월 11일 월요일
[Android] idle(sleep) mode 방지 코드...
private static PowerManager.WakeLock fullWakeLock;
PowerManager pm = (PowerManager) m_sInstance.getSystemService(Context.POWER_SERVICE);
fullWakeLock = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK | PowerManager.ON_AFTER_RELEASE, "GangstarGreeActivity");
keepScreenOn(true);
PowerManager pm = (PowerManager) m_sInstance.getSystemService(Context.POWER_SERVICE);
fullWakeLock = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK | PowerManager.ON_AFTER_RELEASE, "GangstarGreeActivity");
keepScreenOn(true);
public static boolean keepScreenOn(boolean keep)
{
if (keep && !fullWakeLock.isHeld())
{
if (fullWakeLock != null)
{
fullWakeLock.acquire();
return true;
}
}
else if (!keep && fullWakeLock.isHeld())
{
if (fullWakeLock != null)
{
fullWakeLock.release();
return true;
}
}
return false;
}
{
if (keep && !fullWakeLock.isHeld())
{
if (fullWakeLock != null)
{
fullWakeLock.acquire();
return true;
}
}
else if (!keep && fullWakeLock.isHeld())
{
if (fullWakeLock != null)
{
fullWakeLock.release();
return true;
}
}
return false;
}
2012년 4월 7일 토요일
[Android] status bar 감추기...
in Activity:
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
[Android] webview 가 보이지 않을때, javascript 실행 방지
web page에 반복실행중인 자바 스크립트가 있을경우,
어플리케이션이 최소화 되어도, 지속적으로 스크립트가 실행이되서
CPU 점유율이 높아지는 현상이 있다.
이때, 아래와 같이 해결...
/* (non-Javadoc)
* @see android.app.Activity#onPause()
*/
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
mWebView.pauseTimers();
}
/* (non-Javadoc)
* @see android.app.Activity#onResume()
*/
@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
mWebView.resumeTimers();
}
어플리케이션이 최소화 되어도, 지속적으로 스크립트가 실행이되서
CPU 점유율이 높아지는 현상이 있다.
이때, 아래와 같이 해결...
/* (non-Javadoc)
* @see android.app.Activity#onPause()
*/
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
mWebView.pauseTimers();
}
/* (non-Javadoc)
* @see android.app.Activity#onResume()
*/
@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
mWebView.resumeTimers();
}
피드 구독하기:
글 (Atom)