-
-
Save codeforfun-jp/40ee0209abec2d7a6638a2d38f86aa8f to your computer and use it in GitHub Desktop.
How to set button click event with java 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |
findViewById(R.id.btn2).setOnClickListener(this); | |
findViewById(R.id.btn3).setOnClickListener(this); | |
} | |
@Override | |
public void onClick(View v) { | |
if (v.getId() == R.id.btn1) { | |
Snackbar.make(v, "ボタン1が押されました", Snackbar.LENGTH_SHORT).show(); | |
} else if (v.getId() == R.id.btn2) { | |
Snackbar.make(v, "ボタン2が押されました", Snackbar.LENGTH_SHORT).show(); | |
} else if (v.getId() == R.id.btn3) { | |
Snackbar.make(v, "ボタン3が押されました", Snackbar.LENGTH_SHORT).show(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment