어도비일러스트공부중

어도비일러스트공부중

  • 분류 전체보기
    • 터치디자이너
    • DATA MINING
    • 어도비
      • 1) 일러스트 툴, 기능
      • 2) 포토샵 툴, 기능
      • 3) GTQ&GTQi
      • 4) AfterEffects 애프터이펙트
      • 5) 프리미어프로
      • 작업물
      • 영상 디자인 이론과 소스
    • Flutter 플러터
      • 플러터 기능별 정리
      • 플러터 공부기록
      • 플러터 몰랐던 것
      • 플러터 구현, 프로젝트
    • JavaScript
      • 김민태의 프론트엔드 아카데미 1
    • 공부기록
  • 홈
  • 태그
  • 방명록
RSS 피드
로그인
로그아웃 글쓰기 관리

어도비일러스트공부중

컨텐츠 검색

태그

어도비일러스트 어도비포토샵 어도비 효과 Kotlin 포토샵 모션그래픽 일러스트 kotlinbasic text AfterEffects 애프터이펙트 프리미어프로 글자 코틀린 플러터 어도비에펙 어도비애프터이펙트 effects 어도비프리미어

최근글

댓글

공지사항

아카이브

kotlinbasic(8)

  • [Kotlin] how to show the input result on the screen using textview (call, enroll and use the variables and items from main.xml on kotlin file)

    l RESULT l EXPLANATION 1. designate the id on xml file android:id="@+id/tvInput" 2. enroll the id on kotlin file 1) import import android.widget.Button import android.widget.TextView 2) define the value private var tvInput : TextView? = null 2) initialize the value using find view by 더보기 id + r. id. + (name of id) tvInput = findViewById(R.id.tvInput) 3. use the value on the method 1) set the val..

    2022.06.19
  • [Kotlin] how to control every button color with colorPrimary themes.xml at once

    1. define the color name with colors.xml 1) res>> values >> colors.xml 2) designate the color #636262 2. change the primary color 1) res>> values> themes> themse.xml 2) i changed purple color into light gray at the primary tag @color/light_gray 3. confirm the result

    2022.06.19
  • Kotlin exception handling - try, catch, finally, throw

    1. throw throw (keyword) + name of the customized exception + (code to throw) 2. normal code fun main() { val str = numberFunction("73") println(str) } fun numberFunction(str:String):Int{ return Integer.parseInt(str) } The variable 'str' has string type, and it is parsed by the function 'numberFunction' to int. Thus, the program prints '73' 3. error code fun main() { val str = numberFunction("7...

    2022.05.29
  • Kotlin runtime exception, throwable class (Unchecked exception vs Checked exception)

    This posting is about the explanation of the exceptions in Kotlin. 1. EXCEPTION Exception is related to the problem that terminates the program or run the program on the wrong purpose. By knowing and handling the exceptions, we can make the appropriate program. 1) Unchecked Exception : extends the Runtime Exception Class User-made mistakes or wrong logic from the developer usually makes this exc..

    2022.05.29
  • Kotlin as vs as? : unsafe and safe cast operator (class cast exception)

    1. Kotlin cast operator You can use 'as' to apply type casting. However, if the type can not be assigned to the specific target data, it receives the ClassCastException. If you want to remove the exception, you should use 'as?' instead of the 'as' operator. This operator returns 'null' if the class cast exception occurs. 2. Unsafe operator 'as' The operator 'as' can not assign data to unrelated ..

    2022.05.29
  • Kotlin the difference of nested class and inner class (Explanation with Code examples)

    Difference l Explanation While nested class can not approach to the outer class's properties, inner class is able to approach them. l Code l explanation 'unresolved reference' has been occurred since the value named 'topic' is defined in outer class 'Seoul'. This value can not be used inside of the nested class 'Hongdae'. 1. nested class we call the class (which is in the other class ) nested cl..

    2022.05.29
이전
1 2
다음
slowbooktech
© 2018 TISTORY. All rights reserved.

티스토리툴바