티스토리 뷰
CustomView.java
package com.jwsoft.javaproject;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import androidx.annotation.Nullable;
public class CustomView extends View {
public CustomView(Context context) {
super(context);
}
public CustomView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
}
public CustomView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
}
생성자 3개 만들어야 에러 발생 안함.
CustomView.java
package com.jwsoft.javaproject;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import androidx.annotation.Nullable;
public class CustomView extends View {
public CustomView(Context context) {
this(context, null);
}
public CustomView(Context context, @Nullable AttributeSet attrs) {
this(context, attrs, 0);
}
public CustomView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
}
this 를 이용하여 이렇게 사용 가능.
CustomView.kt
package com.jwsoft.kotlinproject
import android.content.Context
import android.util.AttributeSet
import android.view.View
class CustomView : View {
constructor(context: Context) : this(context, null)
constructor(context: Context, attrs: AttributeSet?) : this(context, attrs, 0)
constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)
}
코틀린 소스로 바꿔보면 이렇게 됨.
소스가 너무 길어서 뭔가 비효율적이다.
CustomView.kt
package com.jwsoft.kotlinproject
import android.content.Context
import android.util.AttributeSet
import android.view.View
class CustomView @JvmOverloads constructor(context: Context,
attrs: AttributeSet? = null,
defStyleAttr: Int = 0)
: View(context, attrs, defStyleAttr) {
}
@JvmOverloads 를 이용하여 효율적으로 표현
참고
medium.com/@futureofdev/코틀린-kotlin-customview-774e236ca034
'Android > Kotlin' 카테고리의 다른 글
[Kotlin] @JvmOverloads + CustomView (0) | 2020.08.14 |
---|---|
[Kotlin] StickyHeader + RecyclerView (0) | 2020.08.14 |
[Kotlin] Glide (0) | 2020.08.10 |
[Kotlin] NestedScrollView (0) | 2020.08.10 |
[Kotlin] ProgressBar (0) | 2020.08.07 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Livedata
- 코틀린
- ViewModel
- JSONObject
- coroutine
- ArrayList
- View
- James Kim
- MVVM
- CoordinatorLayout
- recyclerview
- Architecture Pattern
- 안드로이드
- java
- handler
- Vue.js #Vue.js + javascript
- 자바
- 안드로이드 #코틀린 #Android #Kotlin
- Android
- Design Pattern
- ViewPager2
- activity
- Intent
- TabLayout
- DataBinding
- Kotlin
- JSONArray
- fragment
- 혀가 길지 않은 개발자
- XML
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함