Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Last active December 15, 2022 10:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeforfun-jp/83d2a4e9f094e9c957d6b1196489d731 to your computer and use it in GitHub Desktop.
Save codeforfun-jp/83d2a4e9f094e9c957d6b1196489d731 to your computer and use it in GitHub Desktop.
How to set button click event with java 2
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.btn1).setOnClickListener(this);
}
@Override
public void onClick(View v) {
Snackbar.make(v, "ボタン1が押されました", Snackbar.LENGTH_SHORT).show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment