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?
+3
source to share