サーチ…


前書き

Kotlinには、手動バインディングやButterKnifeなどのフレームワークの必要性をスキップできるように、Android用のビューインジェクションが組み込まれています。いくつかの利点は、より良い構文、より良い静的な型付け、したがってエラーが起こりにくいことです。

構成

適切に設定されたgradleプロジェクトから始めます

プロジェクトのローカル (トップレベルではない) build.gradle 、Kotlinプラグインの下にトップレベルのインデントレベルでエクステンションプラグイン宣言を追加します。

buildscript {
    ...
}

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

ビューの使用

我々はと呼ばれるレイアウト例で活動していると仮定すると、 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.*

合成ビューは、そのレイアウトのアクティビティ/フラグメント/ビューの外では使用できません。

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ような風味があるとします。

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

ビューが完全に描画されたときに通知を受け取るための苦痛を感じるリスナーは、Kotlinの拡張でとてもシンプルで素晴らしい

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