http://yoonbumtae.com/?p=2776

정리가 아주 잘되어 있어서 링크 공유합니다

https://recipes4dev.tistory.com/95

 

안드로이드 에디트텍스트 속성 5. [inputMethod, inputType] (Android EditText Attributes 5)

1. EditText 속성 (5) EditText 속성 리스트 및 요약 설명을 확인하시려면 [안드로이드 에디트텍스트 속성] 페이지를 참고하시기 바랍니다. EditText 속성에 대한 자세한 설명 및 예제를 확인하시려면, 아

recipes4dev.tistory.com

 

public static String plusZero(int num) {
int temp = num;
int length = (int) (Math.log10(temp) + 1);
String d = "";

if (length == 1) {
d = String.format("%02d", temp);
} else {
d = String.valueOf(temp);
}

return d;
}

https://kmshack.github.io/AndroidUICollection/

 

Android UI OpenSource

Collection of OpenSource for Android UI.

kmshack.github.io

 

'기타' 카테고리의 다른 글

코틀린 관련 사이트  (0) 2021.07.29
junit 단정문 링크  (0) 2021.07.28
material develop android site  (0) 2021.07.28
유니코드 변환  (0) 2020.08.05
쿼리 정리 사이트  (0) 2018.01.31

https://thdev.tech/kotlin/2018/08/13/Kotlin-Improving/

 

Kotlin 더 잘 활용하기 |

I’m an Android Developer.

thdev.tech

https://philosopher-chan.tistory.com/58

 

kotlin 물음표(?) 와 느낌표(!!)에 대해서

 코틀린에서 null 처리에 대해서 좀 예민한데  코틀린에서 ?는 간단하다  ?는 null일 수 있음을 의미한다.  그러니깐  var abc:String? = null  을 보면 abc라는 변수가 null일 수도 있다 이기 때문에, nul.

philosopher-chan.tistory.com

https://offbyone.tistory.com/393

 

Kotlin - 기본 타입(Basic Types)

Kotlin은 모든것이 객체입니다. 그러므로 모든 변수(variable)에 대해 멤버 함수와 속성을 호출할 수 있습니다. 몇몇 타입은 특별한 내부 표현을 가집니다. 예를 들어 숫자(numbers), 문자(characters), 불

offbyone.tistory.com

https://tourspace.tistory.com/109

 

[Kotlin] 코틀린 object

이 글은 Kotlin In Action을 참고 하였습니다. 더욱 자세한 설명이나 예제는 직접 책을 구매하여 확인 하시기 바랍니다 코틀린은 object란 키워드를 사용합니다. 자바에는 이 키워드가 없죠. 약간 생

tourspace.tistory.com

https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29

 

코틀린 의 apply, with, let, also, run 은 언제 사용하는가?

원문 : “Kotlin Scoping Functions apply vs. with, let, also, and run”

medium.com

https://thdev.tech/kotlin/2018/03/25/Kotlin-lateinit-lazy/

 

Kotlin lazy property - lateinit/lazy 살펴보기 |

I’m an Android Developer.

thdev.tech

 

'기타' 카테고리의 다른 글

안드로이드 UI 오픈소스 사이트  (0) 2021.07.29
junit 단정문 링크  (0) 2021.07.28
material develop android site  (0) 2021.07.28
유니코드 변환  (0) 2020.08.05
쿼리 정리 사이트  (0) 2018.01.31

대표적인 단정문

assertArrayEquals(a, b) : 배열 a와 b가 일치함을 확인
assertEquasl(a, b) : 객체 a와 b의 값이 같은지 확인
assertSame(a, b) : 객체 a와 b가 같은 객체임을 확인
assertTrue(a) : a가 참인지 확인
assertNotNull(a) : a객체가 null이 아님을 확인

http://junit.sourceforge.net/javadoc/org/junit/Assert.html

 

Assert (JUnit API)

clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

junit.sourceforge.net

'기타' 카테고리의 다른 글

안드로이드 UI 오픈소스 사이트  (0) 2021.07.29
코틀린 관련 사이트  (0) 2021.07.29
material develop android site  (0) 2021.07.28
유니코드 변환  (0) 2020.08.05
쿼리 정리 사이트  (0) 2018.01.31

https://material.io/develop/android

'기타' 카테고리의 다른 글

코틀린 관련 사이트  (0) 2021.07.29
junit 단정문 링크  (0) 2021.07.28
유니코드 변환  (0) 2020.08.05
쿼리 정리 사이트  (0) 2018.01.31
codebeautify  (0) 2017.12.02

codeGlance2 소스 사이드바 네비게이션
Awesome Console 터미널 출력에서 파일 이름으로 인식된 부분이 자동으로 연결되고, 그 링크를 클릭하면 해당 파일을 편집기에서 자동으로 열어줌
Translation 편집기에서 커서에 해당하는 단어나 선택영역의 문장을 번역해줌
Grep Console 콘솔 확장
Key Promoter X 단축키 표시
Rainbow Brackets 괄호 기호에 색깔을 입혀 구분시켜준다
.ignore

startAvtivityForResult가 Deprecated되며 변경된 코드

 

ActivityResultLauncher<Intent> someActivityResultLauncher = registerForActivityResult(
new ActivityResultContracts.StartActivityForResult(),
new ActivityResultCallback<ActivityResult>() {
@Override
public void onActivityResult(ActivityResult result) {
if (result.getResultCode() == Activity.RESULT_OK) {
// There are no request codes
} else {


}
}
});

 

Intent intent = new Intent(this, user.class);
intent.setData(Uri.parse("package:" + mContext.getPackageName()));
someActivityResultLauncher.launch(intent);

'android' 카테고리의 다른 글

editText 속성  (0) 2021.08.24
android studio plugin  (0) 2021.07.28
뷰페이저 스와이프해서 프래그먼튼 이동 막기  (0) 2019.09.30
안드로이드 로그 레벨 색상  (0) 2019.08.12
String to byte 계산  (0) 2019.04.08

http://seb.kr/unicode/

'기타' 카테고리의 다른 글

junit 단정문 링크  (0) 2021.07.28
material develop android site  (0) 2021.07.28
쿼리 정리 사이트  (0) 2018.01.31
codebeautify  (0) 2017.12.02
맥 터미널 개발환경 구축하기  (0) 2017.12.02

+ Recent posts