Android

    안드로이드 개발 팁

    태그 설명 (android:sharedUserId) 하나의 프로세스에서 여러 애플리케이션 실행하기 (showDialog 사용중) is not valid is your activity running (링크) 안드로이드 샘플로 들어 있는 NodePad (DB 사용예등..) (링크) 안드로이드 스터디 Jni 발표 자료... [번역] 안드로이드 2.0 Service API 변화 AccountManager 관련 내용 Activity Launch Mode Activity가 화면에 보여질때 발생하는 이벤트 Activity내 배경을 투명하게 하기 Activity를 FullScreen으로 띄우기 Activity에 Dialog 적용하기 adb install이 잘 안될때.. adb 명령어 옵션들 adb 명령어로 응용프로그램..

    Activity 화면 전환 효과

    출처 : http://kangshef.egloos.com/5387699 xml을 열어 버튼을 생성해 줍니다. 이렇게 xml에 중간에 넣어주면 버튼이 생성이 됩니다. 움직여요 라는 버튼이 말이죠 이번엔 자바로 와서 onCreate 안에 버튼 뷰를 등록해 줍니다. Button button = (Button)findViewById(R.id.button); 그리고 바로 온클릭 리스너를 등록합니다. button.setOnClickListener (new View.OnClickListener(){ public void onClick(View v){ Intent i = new Intent(this.class, nextActivity.class); startActivity(i); } } 이렇게 말이죠 여기서 this의..