posted by 네코냥이 2014. 8. 28. 15:04


SQLiteSpy.exe


http://www.yunqa.de/delphi/doku.php/products/sqlitespy/index

posted by 네코냥이 2014. 8. 28. 12:07


Powerful Programming __ Dialog _ ListDialog _ Progress _ Single Choice _ Multiple Choice _ Custom Dialog 활용.pdf


posted by 네코냥이 2014. 8. 27. 17:00


자바 정규식.pdf


'JAVA > JAVA' 카테고리의 다른 글

SimpleDateFormat 예제  (299) 2014.10.23
[JAVA] XPATH를 이용한 XML 파싱  (0) 2014.09.16
[자바] 형변환 캐스팅  (0) 2014.08.26
[JAVA] Random 클래스 (자바 램덤 클래스)  (0) 2013.06.13
[JAVA] Calendar 클래스  (0) 2013.06.13
posted by 네코냥이 2014. 8. 26. 13:55


자바135 UpCasting(상향 형변환), ..pdf


posted by 네코냥이 2014. 8. 18. 09:37

출처: 스택오버플로우


android - Set two buttons to same width regardless of screen size_ - Stack Overflow.pdf








출처: http://aroundck.tistory.com/2134


FLAG_CANCEL_CURRENT : 이전에 생성한 PendingIntent 는 취소하고 새롭게 만든다.


FLAG_NO_CREATE : 생성된 PendingIntent 를 반환한다. 재사용 가능하다.


FLAG_ONE_SHOT : 이 flag 로 생성한 PendingIntent 는 일회용이다.


FLAG_UPDATE_CURRENT : 이미 생성된 PendingIntent 가 존재하면 해당 Intent 의 내용을 변경한다.

'JAVA > Android' 카테고리의 다른 글

Sqlite 뷰어  (863) 2014.08.28
[안드로이드] 기본 Dialog  (0) 2014.08.28
SQLite 날짜관련 함수. 그리고 TOP  (0) 2014.08.07
[안드로이드] BOOT_COMPLETED 사용법  (0) 2014.07.30
[Android] 로밍 여부 확인하기  (0) 2014.07.29
posted by 네코냥이 2014. 8. 7. 12:00


날짜함수.pdf



SQL문 맨 아래에 다음 구문을 추가하면,

LIMIT 10


TOP (10) 처럼 작동

posted by 네코냥이 2014. 7. 30. 14:24


부팅 리시버.pdf


posted by 네코냥이 2014. 7. 29. 16:14
ServiceState objServiceState = new ServiceState();
boolean bServiceStateRoaming = objServiceState.getRoaming();

로밍 단말이 없어서 아직 테스트 해보진 못함


posted by 네코냥이 2014. 7. 28. 16:00



Turning ON or OFF airplane mode programmatically in Android _ yogeshblogspot.pdf



==================================================================================


private Boolean isAirModeOn() {

Boolean bol;

if(Build.VERSION.SDK_INT<17){

bol = Settings.System.getInt(context.getContentResolver(), Settings.System.AIRPLANE_MODE_ON, 0) == 1;

}else{

bol = Settings.System.getInt(context.getContentResolver(), Settings.Global.AIRPLANE_MODE_ON, 0) == 1;

}

return bol;

}


==================================================================================



posted by 네코냥이 2014. 7. 21. 10:28


안드로이드 메뉴.pdf



@Override
public boolean onOptionsItemSelected(MenuItem item) {
   
// Handle item selection
   
switch (item.getItemId()) {
       
case R.id.new_game:
            newGame
();
           
return true;
       
case R.id.help:
            showHelp
();
           
return true;
       
default:
           
return super.onOptionsItemSelected(item);
   
}
}