수색…


소개

Kotlin에는 Android 용 뷰 삽입 기능이있어 수동 바인딩 또는 ButterKnife와 같은 프레임 워크의 필요성을 건너 뛸 수 있습니다. 장점 중 일부는 더 나은 구문, 더 나은 정적 입력 및 덜 오류가 발생하기 쉽습니다.

구성

제대로 구성된 gradle 프로젝트로 시작하십시오.

프로젝트 - 로컬 (최상위가 아닌) build.gradle Kotlin 플러그인 아래에 확장 플러그인 선언을 최상위 들여 쓰기 수준에 추가합니다.

buildscript {
    ...
}

apply plugin: "com.android.application"
...
apply plugin: "kotlin-android"
apply plugin: "kotlin-android-extensions"
...

보기 사용

activity_main.xml이라는 예제 레이아웃으로 activity_main.xml 가 있다고 가정 activity_main.xml .

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/my_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="My button"/>
</LinearLayout>

Kotlin 확장을 사용하면 다음과 같이 추가 바인딩없이 버튼을 호출 할 수 있습니다.

import kotlinx.android.synthetic.main.activity_main.my_button

class MainActivity: Activity() {
    override fun onCreate(savedInstanceBundle: Bundle?) {
        super.onCreate(savedInstanceBundle)
        setContentView(R.layout.activity_main)
        // my_button is already casted to a proper type of "Button"
        // instead of being a "View"
        my_button.setText("Kotlin rocks!")
    }
}

* 표기법을 사용하여 레이아웃에 나타나는 모든 ID를 가져올 수도 있습니다

// my_button can be used the same way as before
import kotlinx.android.synthetic.main.activity_main.*

합성보기는 해당 레이아웃이 활성화 된 Activities / Fragments / Views 외부에서 사용할 수 없습니다.

import kotlinx.android.synthetic.main.activity_main.my_button

class NotAView {
    init {
        // This sample won't compile!
        my_button.setText("Kotlin rocks!")
    }
}

제품 맛

Android 확장은 여러 Android Product Flavors에서도 작동합니다. 예를 들어 build.gradle 과 같이 맛이 build.gradle :

android {
    productFlavors {
        paid {
            ...
        }
        free {
            ...
        }
    }
}

예를 들어, 무료 풍미 만 구매 버튼이 있습니다.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/buy_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Buy full version"/>
</LinearLayout>

우리는 구체적으로 다음과 같은 취향에 구속 할 수 있습니다.

import kotlinx.android.synthetic.free.main_activity.buy_button

통찰력을 얻으려는 고통스러운 청취자,보기가 완전히 그려지는 순간 코 틀린의 확장이 너무 간단하고 멋지다.

mView.afterMeasured {
  // inside this block the view is completely drawn
  // you can get view's height/width, it.height / it.width
}

후드

inline fun View.afterMeasured(crossinline f: View.() -> Unit) {
viewTreeObserver.addOnGlobalLayoutListener(object : ViewTreeObserver.OnGlobalLayoutListener {
    override fun onGlobalLayout() {
        if (measuredHeight > 0 && measuredWidth > 0) {
            viewTreeObserver.removeOnGlobalLayoutListener(this)
            f()
        }
    }
})
}


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow