web-dev-qa-db-ja.com

lateinitプロパティが初期化されていません

カスタムのlinearlayoutクラスがあり、このクラスのインスタンスを作成したいときにエラーが発生しましたlateinitプロパティが初期化されていません butterknifeライブラリの最新バージョンを使用しています

これは私のkotlinクラスです

class MenuItemView : LinearLayout {

@BindView(R.id.menu_title_text_view_id)
lateinit var menuTitleTextView : CTextBasic

constructor(ctx: Context) : super(ctx) {
}

init {
    val view = LayoutInflater.from(context).inflate(R.layout.menu_item,this)
    ButterKnife.bind(this,view)
}

constructor(ctx: Context, attrs: AttributeSet) : super(ctx, attrs) {
    val menuAttrs = context.theme.obtainStyledAttributes(attrs, R.styleable.MenuItemView, 0, 0)
    try {
        val title: String = menuAttrs.getString(R.styleable.MenuItemView_menu_title)
        menuTitleTextView.text = title
    }catch (e : Exception){
        e.printStackTrace()
    }finally {
        menuAttrs.recycle()
    }
}
fun setTitle( title : String){
    menuTitleTextView.text = title
}
}

これはエラーログです

    kotlin.UninitializedPropertyAccessException: lateinit property menuTitleTextView has not been initialized
at com.leavigstone.liberali.ui.custom.menu.MenuItemView.setTitle(MenuItemView.kt:48)
at com.leavigstone.liberali.ui.activities.MainActivity.onAddButtonClick(MainActivity.Java:142)
at com.leavigstone.liberali.ui.activities.MainActivity_ViewBinding$3.doClick(MainActivity_ViewBinding.Java:54)
at butterknife.internal.DebouncingOnClickListener.onClick(DebouncingOnClickListener.Java:22)
at Android.view.View.performClick(View.Java:4780)
at Android.view.View$PerformClick.run(View.Java:19866)
at Android.os.Handler.handleCallback(Handler.Java:739)
at Android.os.Handler.dispatchMessage(Handler.Java:95)
at Android.os.Looper.loop(Looper.Java:135)
at Android.app.ActivityThread.main(ActivityThread.Java:5254)
at Java.lang.reflect.Method.invoke(Native Method)
at Java.lang.reflect.Method.invoke(Method.Java:372)
at com.Android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.Java:903)
at com.Android.internal.os.ZygoteInit.main(ZygoteInit.Java:698)
18

サードパーティのライブラリを使用したくない場合は、これらの拡張機能を追加できます(私はContextExtensions.kt または ViewExtensions.ktコンテキストまたはビュー関連の拡張機能の場合)

inline fun <reified T : View> View.find(id: Int): T = findViewById(id) as T
inline fun <reified T : View> Activity.find(id: Int): T = findViewById(id) as T
inline fun <reified T : View> Fragment.find(id: Int): T = view?.findViewById(id) as T

これらにより、findActivity、およびFragments内からViewを呼び出すことができます。したがって、クラス内ではなく

@BindView(R.id.menu_title_text_view_id) lateinit var menuTitleTextView : CTextBasic

あなたが持つことができます

val menuTitleTextView by lazy { find<CTextBasic>(R.id.menu_title_text_view_id) }

UIなどの場合、変更する必要がない場合は、valの代わりにvarを使用することをお勧めします。プログラミングの一般的なルールとして、物事を可能な限り不変にしておくと、バグがはるかに少なくなります。

6
Billy

私の場合、ButterKnifeを正しく構築していませんでした。モジュールのbuild.gradleにコンパイラーをインポートしていることを確認してください。

...
// Butter Knife
implementation "com.jakewharton:butterknife:$butterKnifeVersion"
kapt "com.jakewharton:butterknife-compiler:$butterKnifeVersion"
...

Jetbrainのサンプルスレッドの discussion は、この問題をより明確にします。

別の問題は、ビューにアクセスしている可能性があることですbeforeコンテナが作成されました。ここに 関連する質問 があり、そこでの議論はkotlinx合成プロパティに固有ですが、同じロジックがButterknifeビューバインディングに適用されるはずです

2
kip2

Kotlinのバターナイフ風のビューバインディングには Kotterknife を使用します。

次に、あなたのビューを

val menuTitleTextView: CTextBasic by bindView(R.id.menu_title_text_view_id)
2
lukle

追加 apply plugin: 'kotlin-kapt'アプリレベルのbuild.gradleファイル

apply plugin: 'com.Android.application'
apply plugin: 'kotlin-Android'
apply plugin: 'kotlin-Android-extensions'
apply plugin: 'kotlin-kapt'

および依存関係セクション

implementation "com.jakewharton:butterknife:8.8.1"
kapt "com.jakewharton:butterknife-compiler:8.8.1"

お役に立てれば!

2

私は this がうまくいくと思った。

プロジェクトappモジュールのbuild.gradleを変更します。

dependencies {
    compile "com.jakewharton:butterknife:8.8.1"
    kapt "com.jakewharton:butterknife-compiler:8.8.1"
}

kaptの代わりにannotationProcessorを使用します。

そして、次のようなおなじみのButterKnifeアノテーションを実行できます。

class MainActivity : AppCompatActivity() {

    @BindView(R.id.myButton)
    lateinit var myButton: Button

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        ButterKnife.bind(this)
        //...
    }
}

楽しい。

2
Johnny