Skip to content

Instantly share code, notes, and snippets.

View Y4M1N3's full-sized avatar

Lakhder Y4M1N3

View GitHub Profile
@Y4M1N3
Y4M1N3 / Code snippet from MainActivity.java
Created June 15, 2019 14:21 — forked from udacityandroid/Code snippet from MainActivity.java
Android for Beginners : Negative Number of Cups of Coffee Extra Challenge Solution
/**
* This method is called when the plus button is clicked.
*/
public void increment(View view) {
if (quantity == 100) {
// Show an error message as a toast
Toast.makeText(this, "You cannot have more than 100 coffees", Toast.LENGTH_SHORT).show();
// Exit this method early because there's nothing left to do
return;
}