공부/Basic (8) 썸네일형 리스트형 [Git] 잔디가 안심어 질 때 현재 이름 및 이메일 확인 git config user.name git config user.email 이름 및 이메일 재설정 git config --global user.name git config --global user.email [Git] Android Studio, New Repository 생성 VCS > Enable Version Control Intergration... > OK GitHub > Share Project on Githhub > Share [Git] rebase, merge 취소 - 머지 작업 중 직전의 상태로 돌리고 싶을 때 git merge --abort - 리베이스 중 중단하고 싶을 때 git rebase --abort 코드 작성 시 표기법 케멜 표기법, 단봉낙타표기법 (Camel Case) helloWorld 첫 문자를 소문자로 표기하고, 그 다음 문자부터는 대문자로 표기 (Java 권장) 파스칼 표기법, 쌍봉탁타표기법 (Pascal Case) HellowWolrd 첫 문자를 대문자로 표기하고, 그 다음 문자도 대문자로 표기 (클래스명 권장) 스네이크 표기법 (Snake Case) hello_world underscore(_)를 붙여 이어나가는 표기법 (변수명, 함수명, 데이터 타입, 네임스페이스명 권장) 안드로이드 디버그 서명 SHA-1, SHA-256 값 확인하기 1. 우측상단 Gradle 클릭 2. 프로젝트 명 -> Tasks -> android -> signing Report를 더블 클릭 3. run 확인 시간(UTC, GMT) 그리니치 평균시(Greenwich Mean Time, GMT, 1925~1972) : 영국 그리니치 첨성대 기준 표준 시간 협정 세계시(Coordinated Universal Time, UTC, 1972. 1.1) : 세슘 원자 진동수 기반 표준 시간 대한민국의 시간대(Korea Standard Time, KST) : UTC +9 (우리나라가 9시간 빠름) UTC와 GMT의 차이는 소수점 단위정도의 차이이나 기술적 정밀함이 필요한 곳에서는 UTC 사용 Stetho 사용 http://facebook.github.io/stetho/ Download Stetho is a sophisticated debug bridge for Android applications. When enabled, developers have access to the Chrome Developer Tools feature natively part of the Chrome desktop browser. Developers can also choose to enable the optional dumpapp tool which of facebook.github.io 1. Gradle implementation 'com.facebook.stetho:stetho:1.5.1' // check recent ver.. android:ellipsize https://developer.android.com/reference/android/widget/TextView.html#setEllipsize(android.text.TextUtils.TruncateAt) 불러오는 중입니다... 주의 사항 maxLines가 2 이상이면 ellipsize는 end, marquee사용 가능 - If setMaxLines(int) has been used to set two or more lines, only TextUtils.TruncateAt.END and TextUtils.TruncateAt.MARQUEE are supported (other ellipsizing types will not do anything). 이전 1 다음