We are developing in android studio. Below, I would like to know about the arguments when calling a class method (but not always).
AAA.pushButton("1")
When you type
AAA.pushButton( s: "1" );
Is automatically completed. I can understand that's:'is a string, but what kind of technique is this? It doesn't have to be.
Recommended Posts