私はこのプログラムを実行すると、 "シンボルsetOnClickListenerを解決できません"というメッセージが繰り返し表示されます。は、アンドロイドのシンボルsetOnClickListenerを解決できません
import android.support.v7.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Set the content of the activity to use the activity_main.xml layout file
setContentView(R.layout.activity_main);
}
// Find the View that shows the numbers category
TextView numbers = (TextView) findViewById(R.id.numbers);
// Set a click listener on that View
numbers.setOnClickListener(new View.OnClickListener() {
// The code in this method will be executed when the numbers View is clicked on.
@Override
public void onClick(View view) {
Intent numbersIntent = new Intent(MainActivity.this, Numbers.class);
startActivity(numbersIntent);
}
}
}
移動
活動とそのライフサイクルについてもっと読みますあなたのコードインide 'onCreate()' – earthw0rmjim
はい、または、「OnClickListener」と「numbers.setOnClickListener(this);」を実装します。 – Amg91