Does Android Studio 3.0 augment query parameter information?

The following code example outputted by Kotlin is shown in Android Studio 3.0, I find what is fun detailIntent.putExtra("Person", SampleData.BOB)

displayed as detailIntent.putExtra(name: "Person", SampleData.BOB)

and I cannot delete name

in the editor.

It seems like Android Studio 3.0 is adding the name of the request parameter information, right? and how can i turn it on or off?

enter image description here

+3


source to share


1 answer


It seems that Android Studio 3.0 add parameter prompt information name

- Yes.

and how can I set to turn on or turn off it?

Disable , just right click on the place of the prompt: -

enter image description here



Enable , in the same way: -

enter image description here

If you face click issues, change it from settings: -

enter image description here

+6


source







All Articles