0

我是 android 新手,现在才刚刚开始。对于我来说,当我尝试为应用程序关闭的按钮实现单击侦听器时。任何人都可以帮助我。

以下是代码:

public class Sampleprojectsubbu1Activity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);        
        final  Button b1=(Button)findViewById(android.R.id.button1);
        b1.setOnClickListener(new View.OnClickListener()
        {       
        @Override
        public void onClick(View v) 
        {           

            // TODO Auto-generated method stub

        }
    });
    }
}
4

3 回答 3

2

你正在使用 id "android.R.id.button1" 这是 android 的一部分,你应该使用类似 R.id.your_button_id

于 2012-04-24T05:50:31.913 回答
1

可能在这一行中您遇到了错误-

final  Button b1=(Button)findViewById(android.R.id.button1);

在上面的行android.R.id.button1中将提供默认按钮,该按钮将随 android jar 一起提供。

而不是在那里,您必须使用按钮 ID。你在你的main.xml文件中使用了什么。就像如果您的方法中有一个按钮main.xmlbuttonconfirm您应该使用如下 -

final  Button b1=(Button)findViewById(R.id.buttonconfirm);

希望这对您有所帮助。而且,也请发布您main.xml的问题。

于 2012-04-24T05:49:49.717 回答
1

请更改此行。

final  Button b1=(Button)findViewById(android.R.id.button1);

final  Button b1=(Button)findViewById(R.id.button1);
于 2012-04-24T05:50:02.100 回答