简体   繁体   中英

Invalid Method Declaration - Return type required

Having issues with the line I labelled. Tried multiple different suggestions but none seem to fix the issue, anyone has anymore suggestions?

package connect2you.com;

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;


public class MainActivity extends AppCompatActivity implements View.OnClickListener {


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    findViewById(R.id.textViewSignup).setOnClickListener(this); // error on this line

    @Override
    public void onClick(View view) {
        switch (view.getId()) {
            case R.id.textViewSignup:

                startActivity(new Intent(this, SignUpActivity.class));

                break;
        }
    }
}

Put your call tob findViewById() inside a method. You can't run code outside of methods.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM