EditText Buy_Price, Sell_Price;
Buy_Price = findViewById(R.id.Buy_Price);
Sell_Price = findViewById(R.id.Sell_Price);
int Buy = Integer.parseInt(Buy_Price.getText().toString());
int Sell = Integer.parseInt(Sell_Price.getText().toString());Buy_Price.setError("Please enter numebr"); // Error মেসেজ শো করবে
0 Comments