반응형
설정 - java - editor - templates 에서 저렇게 추가해놓고, 코드 편집 중에 ilog 라고 치고 자동완성 단축키를 누르면
Log.i("${file}|${enclosing_method}","|"+${cursor}+"|");${:import(android.util.Log)}
protected void onCreate(Bundle savedInstanceState)
{
Log.i("MainActivity.java | onCreate", "|" + +"|");
}
자동으로 파일명과 함수이름이 추가된 로그 구문이 완성됩니다. 가끔 함수이름이 제대로 안나올 때도 있지만, 대부분은 잘 나와요.
같은 방식으로 warning, error 도 추가하면 편해요.
또는
toast는 아래와 같이
Toast.makeText(${primary_type_name}.this,"",0).show();${:import (android.widget.Toast)}
반응형
'android' 카테고리의 다른 글
Android Studio 한글 깨짐 (5) | 2016.04.17 |
---|---|
Android Studio [ Edit Template Variables Dialog ] (0) | 2016.01.23 |
SlidingTabLayout 사용시 screenX 분배하기 (0) | 2014.11.21 |
android - proguard (0) | 2014.10.17 |
Google Analytics SDK v4 for Android - Parameters (0) | 2014.10.17 |