我真的是Android Studio和程序设计的新手,但我说了一个错误,但我不知道自己错过了什么。我将代码放在下面。

findViewById(R.id.myButton).bringToFront(View);
//view is where it is saying Expression expected

最佳答案

findViewById(R.id.myButton).bringToFront();


应该为您工作。

09-05 21:30