본문 바로가기

mobile106

android shortcut - 안드로이드 단축키 # 내가알아낸 ShortCut Save Context : ALT + Shift + S Tab 이동 (디자이너화면) Design Text : ALT + Shift + Left/Right Tab 이동 : ALT + Left/Right GO TO : Ctrl + B GO TO Implement : Ctrl + Alt + B Scroll from Source : Alt + F1, 1 View API : Ctrl + Q View Method Parameter Hit : Ctrl + P 코드자동완성 : Ctrl + Shift + Space 코드자동완성 제안 : Ctrl + Space Seter Geter 코드생성 : Alt + Insert 코드블럭보기 : Ctrl + Shift + [ Plus / Minus ] 코.. 2019. 7. 18.
adb command adb kill-server adb start-server adb shell dumpstate > test2.log.txt adb pull /data/anr/traces.txt.bugreport line move : Alt+Shfit+Up Line Copy : Ctrl+d Line Del : Ctrl+Y Toggle breakpoint : Ctrl + F8 View breakpoints : Ctrl + Shift + F8 2019. 7. 18.
View Class Diagram 클래스 다이어그램 2019. 7. 18.
Android - Event Keyboard # Android - Event Keyboard ```java package exam.Input; import android.app.*; import android.content.*; import android.graphics.*; import android.os.*; import android.view.*; public class MoveCircle extends Activity { private MyView vw; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); vw = new MyView(this); vw.setFocusable(true); vw.setFocusableInTouchMode(tru.. 2019. 7. 17.
Android - Event # Android - Event ```java package exam.Input; import java.util.*; import android.app.*; import android.content.*; import android.graphics.*; import android.os.*; import android.view.*; public class FreeLine extends Activity { private MyView vw; ArrayList arVertex; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); vw = new MyView(this); setContentView(vw); arVe.. 2019. 7. 17.
Android - Event Access # Android - Event Access ```java package exam.Input; import android.app.*; import android.os.*; import android.view.*; import android.widget.*; import exam.AndroidExam.*; /* 핸들러내의 지역 변수로 선언하기 public class HandlerAccess extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.input_handleraccess); LinearLayout linear = (Linea.. 2019. 7. 17.