Skip to content

Instantly share code, notes, and snippets.

@Mariem-07
Created August 29, 2015 10:58
/**
*this method displys the given quantity value on the scereen.
* /
private void displyPrice (int number){
TextView priceTextView=(TextView) find ViewById(R.id.price_text_view);
priceTextView.setText(NumberFormat.getCurrencyInstance().Format(number));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment