Skip to content

Instantly share code, notes, and snippets.

Created May 20, 2015 20:44
Show Gist options
  • Save anonymous/6dde8cc012ac94aaf9ea to your computer and use it in GitHub Desktop.
Save anonymous/6dde8cc012ac94aaf9ea to your computer and use it in GitHub Desktop.
package com.example.android.justjava;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.View;
import android.widget.TextView;
import java.text.NumberFormat;
/**
* This app displays an order form to order coffee.
*/
public class MainActivity extends ActionBarActivity {
int quantity = 2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
/**
* This method is called when the plus button is clicked.
*/
public void increment(View view) {
quantity = quantity + 1;
display(quantity);
}
/**
* This method is called when the minus button is clicked.
*/
public void decrement(View view) {
quantity = quantity - 1;
display(quantity);
}
/**
* This method is called when the order button is clicked.
*/
public void submitOrder(View view) {
int quantity = 5;
display(quantity);
displayPrice(quantity * 5);
}
/**
* This method displays the given quantity value on the screen.
*/
private void display(int number) {
TextView quantityTextView = (TextView) findViewById(
R.id.quantity_text_view);
quantityTextView.setText("" + number);
}
/**
* This method displays the given price value on the screen.
*/
private void displayPrice(int number) {
TextView priceTextView = (TextView) findViewById(R.id.price_text_view);
priceTextView.setText(NumberFormat.getCurrencyInstance().format(number));
}
}
@afarisamuel6
Copy link

package com.example.android.justjava;

import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import android.view.View;
import android.widget.TextView;

import java.text.NumberFormat;

/**

  • This app displays an order form to order coffee.
    */
    public class MainActivity extends AppCompatActivity {

    @OverRide
    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    }
    int quantity = 2;
    /**

    • When you click the + it increases the initial value to 3
      */
      public void incrementOrder(View view) {
      quantity = quantity + 1;
      display(quantity);

    }
    /** When you click the - button it changes to 1 */
    public void decrementOrder(View view) {
    if (quantity==0){
    quantity = 0;
    }else {
    quantity = quantity - 1;
    display(quantity);
    }
    }

    /**

    • This method is called when the order button is clicked.
      */
      public void submitOrder(View view) {
      int quantity = 2;
      display(quantity);
      displayPrice(quantity * 5);
      }

    /**

    • This method displays the given quantity value on the screen.
      */
      private void display(int number) {
      TextView quantityTextView = (TextView) findViewById(R.id.quantity_text_view);
      quantityTextView.setText("" + number);
      }

    /**

    • This method displays the given price on the screen.
      */
      private void displayPrice(int number) {
      TextView priceTextView = (TextView) findViewById(R.id.price_text_view);
      priceTextView.setText(NumberFormat.getCurrencyInstance().format(number));
      }

}

@harshavardhan3199
Copy link

image
You can also use the displayPrice() method in increment() and decrement() so that when you increase the quantity it increases the price as well.
Use the image above if you have any doubts.

@Iskandarok
Copy link

I copied this xml and I had 7 errors

@Iskandarok
Copy link

Why this XML have errors

@JAVIYARAJ
Copy link

ActionBarActivity is now deprecated, update it to AppCompatActivity for the students.

yes absolutely right...

@AnwaarHamdi
Copy link

/*
package com.example.justjava;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

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

}
/
/
*

  • IMPORTANT: Make sure you are using the correct package name.
  • This example uses the package name:
  • package com.example.android.justjava
  • If you get an error when copying this code into Android studio, update it to match teh package name found
  • in the project's AndroidManifest.xml file.
    **/

package com.example.justjava;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;

import androidx.appcompat.app.AppCompatActivity;

import java.text.NumberFormat;

//import android.support.v7.app.AppCompatActivity;

/**

  • This app displays an order form to order coffee.
    */
    public class MainActivity extends AppCompatActivity {
    //global variable
    int quantity = 3;

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

    /**

    • This method is called when the order button is clicked.
      */
      public void submitOrder(View view) {

      display(quantity);
      displayPrice(quantity*5);
      }
      /**

    • This method is called when the order button is clicked.
      */
      public void increment(View view ) {

      quantity=quantity+1;
      display(quantity);

    }
    /**

    • This method is called when the order button is clicked.
      */
      public void decrement(View view ) {
      quantity=quantity-1;
      display(quantity);

    }

    /**

    • This method displays the given quantity value on the screen.
      /
      private void display(int number) {
      TextView quantityTextView = (TextView) findViewById(R.id.quantity_text_view);
      quantityTextView.setText("" + number);
      }
      /
      *
    • This method displays the given price on the screen.
      */
      private void displayPrice(int number) {
      TextView priceTextView = (TextView) findViewById(R.id.price_text_view);
      priceTextView.setText(NumberFormat.getCurrencyInstance().format(number));
      }

}

@AnwaarHamdi
Copy link

task #2= lesson 20
/*
package com.example.justjava;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

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

}
/
/
*

  • IMPORTANT: Make sure you are using the correct package name.
  • This example uses the package name:
  • package com.example.android.justjava
  • If you get an error when copying this code into Android studio, update it to match teh package name found
  • in the project's AndroidManifest.xml file.
    **/

package com.example.justjava;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;

import androidx.appcompat.app.AppCompatActivity;

import java.text.NumberFormat;

//import android.support.v7.app.AppCompatActivity;

/**

  • This app displays an order form to order coffee.
    */
    public class MainActivity extends AppCompatActivity {
    //global variable
    int quantity = 0;

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

    /**

    • This method is called when the order button is clicked.
      */
      public void submitOrder(View view) {

      display(quantity);
      displayPrice(quantity*5);
      }
      /**

    • This method is called when the order button is clicked.
      */
      public void increment(View view ) {
      quantity=quantity+1;
      display(quantity);

    }
    /**

    • This method is called when the order button is clicked.
      */
      public void decrement(View view ) {
      quantity=quantity-1;
      display(quantity);

    }

    /**

    • This method displays the given quantity value on the screen.
      /
      private void display(int number) {
      TextView quantityTextView = (TextView) findViewById(R.id.quantity_text_view);
      quantityTextView.setText("" + number);
      }
      /
      *
    • This method displays the given price on the screen.
      */
      private void displayPrice(int number) {
      TextView priceTextView = (TextView) findViewById(R.id.price_text_view);
      priceTextView.setText(NumberFormat.getCurrencyInstance().format(number));
      }

}

@AnwaarHamdi
Copy link

task 3: lesson 20
/*
package com.example.justjava;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

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

}
/
/
*

  • IMPORTANT: Make sure you are using the correct package name.
  • This example uses the package name:
  • package com.example.android.justjava
  • If you get an error when copying this code into Android studio, update it to match teh package name found
  • in the project's AndroidManifest.xml file.
    **/

package com.example.justjava;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;

import androidx.appcompat.app.AppCompatActivity;

import java.text.NumberFormat;

//import android.support.v7.app.AppCompatActivity;

/**

  • This app displays an order form to order coffee.
    */
    public class MainActivity extends AppCompatActivity {
    //global variable
    int quantity = 2;

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

    /**

    • This method is called when the order button is clicked.
      */
      public void submitOrder(View view) {

      display(quantity);
      displayPrice(quantity*5);
      }
      /**

    • This method is called when the order button is clicked.
      /
      public void increment(View view ) {
      //quantity=quantity+1;
      quantity=quantity
      2;
      display(quantity);

    }
    /**

    • This method is called when the order button is clicked.
      */
      public void decrement(View view ) {
      //quantity=quantity-1;
      quantity=quantity/2;
      display(quantity);

    }

    /**

    • This method displays the given quantity value on the screen.
      /
      private void display(int number) {
      TextView quantityTextView = (TextView) findViewById(R.id.quantity_text_view);
      quantityTextView.setText("" + number);
      }
      /
      *
    • This method displays the given price on the screen.
      */
      private void displayPrice(int number) {
      TextView priceTextView = (TextView) findViewById(R.id.price_text_view);
      priceTextView.setText(NumberFormat.getCurrencyInstance().format(number));
      }

}

@AnwaarHamdi
Copy link

/*
package com.example.justjava;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

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

}
/
/
*

  • IMPORTANT: Make sure you are using the correct package name.
  • This example uses the package name:
  • package com.example.android.justjava
  • If you get an error when copying this code into Android studio, update it to match teh package name found
  • in the project's AndroidManifest.xml file.
    **/

package com.example.justjava;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;

import androidx.appcompat.app.AppCompatActivity;

import java.text.NumberFormat;

//import android.support.v7.app.AppCompatActivity;

/**

  • This app displays an order form to order coffee.
    */
    public class MainActivity extends AppCompatActivity {
    //global variable
    int quantity = 2;

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

    /**

    • This method is called when the order button is clicked.
      /
      public void submitOrder(View view) {
      int quantity=5;
      display(quantity);
      displayPrice(quantity
      5);
      }
      /**
    • This method is called when the order button is clicked.
      /
      public void increment(View view ) {
      //quantity=quantity+1;
      quantity=quantity
      2;
      display(quantity);

    }
    /**

    • This method is called when the order button is clicked.
      */
      public void decrement(View view ) {
      //quantity=quantity-1;
      quantity=quantity/2;
      display(quantity);

    }

    /**

    • This method displays the given quantity value on the screen.
      /
      private void display(int number) {
      TextView quantityTextView = (TextView) findViewById(R.id.quantity_text_view);
      quantityTextView.setText("" + number);
      }
      /
      *
    • This method displays the given price on the screen.
      */
      private void displayPrice(int number) {
      TextView priceTextView = (TextView) findViewById(R.id.price_text_view);
      priceTextView.setText(NumberFormat.getCurrencyInstance().format(number));
      }

}

@AnwaarHamdi
Copy link

this code is the content of mainActivity.java. it it has the global variable for increment() and decrement() methods and the local variable for the submitOrder(View view) method(i.e., with the 3 tasks):
/*
package com.example.justjava;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

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

}
/
/
*

  • IMPORTANT: Make sure you are using the correct package name.
  • This example uses the package name:
  • package com.example.android.justjava
  • If you get an error when copying this code into Android studio, update it to match teh package name found
  • in the project's AndroidManifest.xml file.
    **/

package com.example.justjava;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;

import androidx.appcompat.app.AppCompatActivity;

import java.text.NumberFormat;

//import android.support.v7.app.AppCompatActivity;

/**

  • This app displays an order form to order coffee.
    */
    public class MainActivity extends AppCompatActivity {
    //global variable
    int quantity = 2;

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

    /**

    • This method is called when the order button is clicked.
      /
      public void submitOrder(View view) {
      int quantity=5;
      display(quantity);
      displayPrice(quantity
      5);
      }
      /**
    • This method is called when the order button is clicked.
      /
      public void increment(View view ) {
      //quantity=quantity+1;
      quantity=quantity
      2;
      display(quantity);

    }
    /**

    • This method is called when the order button is clicked.
      */
      public void decrement(View view ) {
      //quantity=quantity-1;
      quantity=quantity/2;
      display(quantity);

    }

    /**

    • This method displays the given quantity value on the screen.
      /
      private void display(int number) {
      TextView quantityTextView = (TextView) findViewById(R.id.quantity_text_view);
      quantityTextView.setText("" + number);
      }
      /
      *
    • This method displays the given price on the screen.
      */
      private void displayPrice(int number) {
      TextView priceTextView = (TextView) findViewById(R.id.price_text_view);
      priceTextView.setText(NumberFormat.getCurrencyInstance().format(number));
      }

}

@ghanwaar
Copy link

this code is the content of mainActivity.java. it it has the global variable for increment() and decrement() methods and the local variable for the submitOrder(View view) method(i.e., with the 3 tasks):
/*
package com.example.justjava;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

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

IMPORTANT: Make sure you are using the correct package name.
This example uses the package name:
package com.example.android.justjava
If you get an error when copying this code into Android studio, update it to match teh package name found
in the project's AndroidManifest.xml file.
**/
package com.example.justjava;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;

import androidx.appcompat.app.AppCompatActivity;

import java.text.NumberFormat;

//import android.support.v7.app.AppCompatActivity;

/**

This app displays an order form to order coffee.
*/
public class MainActivity extends AppCompatActivity {
//global variable
int quantity = 2;

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

/**

This method is called when the order button is clicked.
/
public void submitOrder(View view) {
int quantity=5;
display(quantity);
displayPrice(quantity5);
}
/**
This method is called when the order button is clicked.
/
public void increment(View view ) {
//quantity=quantity+1;
quantity=quantity2;
display(quantity);
}
/**

This method is called when the order button is clicked.
*/
public void decrement(View view ) {
//quantity=quantity-1;
quantity=quantity/2;
display(quantity);
}

/**

This method displays the given quantity value on the screen.
/
private void display(int number) {
TextView quantityTextView = (TextView) findViewById(R.id.quantity_text_view);
quantityTextView.setText("" + number);
}
/*
This method displays the given price on the screen.
*/
private void displayPrice(int number) {
TextView priceTextView = (TextView) findViewById(R.id.price_text_view);
priceTextView.setText(NumberFormat.getCurrencyInstance().format(number));
}
}

@hafsabelka
Copy link

UPDATE

`package com.example.justjava;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle; import android.view.View; import android.widget.TextView;

import java.text.NumberFormat; import java.util.Locale;

/**

  • This app displays an order form to order coffee
    /
    public class MainActivity extends AppCompatActivity {
    int quantity = 2;
    @OverRide
    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    }
    /
    *

    • This method is called when the plus button is clicked.
      */
      public void increment(View view) {
      quantity = quantity + 1;
      display(quantity);
      }

    /**

    • This method is called when the minus button is clicked.
      */
      public void decrement(View view) {
      quantity = quantity - 1;
      display(quantity);
      }

    /**

    • This method is called when the order button is clicked.
      */
      public void submitOrder(View view) {
      int quantity = 5;
      display(quantity);
      displayPrice(quantity * 10);
      }

    /**

    • This method displays the given quantity value on screen.
      */
      private void display(int number) {
      TextView quantityTextView = findViewById(R.id.quantity_text_view);
      quantityTextView.setText("" + number);
      }

    /**

    • This method displays the given price value on the screen.
      */
      private void displayPrice(int number) {
      TextView priceTextView = findViewById(R.id.price_text_view);
      priceTextView.setText(NumberFormat.getCurrencyInstance(new Locale("en", "US")).format(number));
      }
      }
      `

plz can u help me.. i send to u in email will u plz answer

@hafsabelka
Copy link

hafsabelka commented Aug 6, 2022

hi i need help any one conntect me and help me in cod plz

add me on discord .... DzHafsa 1426

@AnwaarHamdi
Copy link

AnwaarHamdi commented Aug 7, 2022 via email

@hafsabelka
Copy link

hafsabelka commented Aug 7, 2022 via email

@hafsabelka
Copy link

hafsabelka commented Aug 7, 2022 via email

@jkm-github
Copy link

jkm-github commented Aug 9, 2022 via email

@Saphiriela
Copy link

package com.example.justjava;

import android.R
import android.os.Bundle
import android.view.View
import android.widget.TextView
import androidx.appcompat.app.AppCompatActivity
import java.text.NumberFormat

/**

This app displays an order form to order coffee.
*/
class MainActivity : AppCompatActivity() {

var quantity = 0

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(com.example.justjava.R.layout.activity_main)
}

/**
 * This method is called when the PLUS button is clicked.
 */
fun increment (view: View?) {
    quantity = quantity + 1
    display(quantity)
}

/**
 * This method is called when the MINUS button is clicked.
 */
fun decrement (view: View?) {
    quantity = quantity - 1
    display(quantity)
}

/**
 * This method is called when the ORDER button is clicked.
 */
fun submitOrder(view: View?) {
    display(quantity)
    displayPrice(quantity * 50)
}

/**
 * This method displays the given quantity value on the screen.
 */
private fun display(number: Int) {
    val quantityTextView = findViewById<View>(com.example.justjava.R.id.quantity_text_view) as TextView
    quantityTextView.text = "" + number
}

/**
 * This method displays the given price on the screen.
 */
private fun displayPrice(number: Int) {
    val priceTextView = findViewById<View>(com.example.justjava.R.id.price_text_view) as TextView
    priceTextView.setText(NumberFormat.getCurrencyInstance().format(number))
}

}

@HAXAZE
Copy link

HAXAZE commented Dec 16, 2022

CAN YOU PROVIDE ME THE XML CODE MY XML CODE HAS SOME ERROR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment