按钮的setOnClickListener使应用程序

时间:2015-07-06 08:59:40

标签: java android

因此,当我尝试启动此应用程序时,它会崩溃。但是,当我尝试使用setOnClickListener时它只会崩溃。如果我注释掉那个小部分它运行得很好。

public class MainActivity extends ActionBarActivity {


@Override
protected void onCreate(Bundle savedInstanceState) {
    setContentView(R.layout.activity_main);
    final TextView textView = (TextView) findViewById(R.id.textView);
    final Button button = (Button)findViewById(R.id.button);
    super.onCreate(savedInstanceState);
    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            //textView.setText("Boop!");
        }
    });
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);

确定工作代码!我不得不移动super.onCreate,并在findviewbyID部分中声明textview。但是,现在它按照我的意图运作。谢谢你们的帮助!我只是想为约会制作一些非常基本的东西。 xD你们是救命的人。

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Button button = (Button)findViewById(R.id.button);
    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            TextView textView = (TextView) findViewById(R.id.textView);
            textView.setText("Boop!");
        }
    });
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}

WORKING

2 个答案:

答案 0 :(得分:1)

错误即将发生,因为您正在调用super.onCreate(savedInstanceState);setContentView之后然后使用变量。

在您不写onClicklister之前错误未到来的原因: 变量textView和button已经为null或处于不一致状态,但是当您编写单击侦听器时,将使用变量并且您将面临错误。

答案 1 :(得分:0)

您将textView声明为final

  

变量可以声明为final。最终变量只能分配一次。

final TextView textView = (TextView) findViewById(R.id.textView);

所以你无法修改它。

您必须在onclick方法中获取视图:

button.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        TextView textView = (TextView) findViewById(R.id.textView);
        textView.setText("Boop!");
    }
});