Android-显示带有按钮的int onClick [错误:无法解析方法“ display(int)”]



我在Android Studio上遇到一个错误,因为我认为我插入了多个'显示'。有人可以建议&解释我需要做的事情,以及为什么会导致此错误,所以我知道将来吗?

请参阅下面有关以下错误:

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 {
@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 = 2;
display(quantity);
displayPrice(quantity * 5);
}
/**
* This method is called when the increment button is clicked.
*/
public void increment(View view) {
int quantity = 3;
display(quantity);
displayPrice(quantity * 5);
}
/**
* This method is called when the decrement button is clicked.
*/
public void decrement(View view) {
int quantity = 1;
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));
}
}
/**
* This method is called when the decrement button is clicked.
*/
public void decrement(View view) {
int quantity = 1;
display(quantity);
displayPrice(quantity * 5)   // <--- Missing ';' character

您错过了(;)字符

最新更新