9
NullPointerException เมื่อพยายามเข้าถึงมุมมองในส่วน Kotlin
จะใช้ Kotlin Android Extensions กับFragments ได้อย่างไร? ถ้าฉันใช้ภายในonCreateView()ฉันได้รับNullPointerExceptionข้อยกเว้นนี้: เกิดจาก: java.lang.NullPointerException: พยายามเรียกวิธีเสมือน 'android.view.View android.view.View.f.View.FindViewById (int)' ในการอ้างอิงวัตถุ null นี่คือรหัสส่วน: package com.obaied.testrun.Fragment import android.os.Bundle import android.support.v4.app.Fragment import android.util.Log import android.view.LayoutInflater import android.view.View import android.view.ViewGroup import com.obaied.acaan.R import kotlinx.android.synthetic.main.fragment_card_selector.* public class CardSelectorFragment : Fragment() { val TAG = javaClass.canonicalName companion object { fun newInstance(): CardSelectorFragment …