This is the code showing for me:
fun onclick(view: android.view.View)
fun onclick(view: View)
What's the difference between these.
This is the code showing for me:
fun onclick(view: android.view.View)
fun onclick(view: View)
What's the difference between these.
There is no difference. For the first you wrote it with the package extension and the other is a plain version.
Plain version : fun onclick(view: View)