请帮助我使用以下代码...我正在尝试制作一个 android 应用程序,当我尝试在 onCreate 中创建函数时出现代码错误。创建函数的需要是访问按钮、标签和文本框....这是我的代码
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final EditText player = (EditText)findViewById(R.id.player);
final TextView plrlbl1 = (TextView)findViewById(R.id.textView1);
final ImageButton imageButton1 = (ImageButton)findViewById(R.id.imageButton1);
final ImageButton imageButton2 = (ImageButton)findViewById(R.id.imageButton2);
public void thisfunction()
{
}
}
请帮我在 oncreate 中创建一个函数......感谢帮助