kotlin
import kotlinx.android.synthetic.main.fragment_example.*
class ExampleFragment : Fragment() {
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
val textView = view?.exampleTextView
textView?.text = "Hello, Kotlin Extensions!"
return inflater.inflate(R.layout.fragment_example, container, false)
}
}