How do I check if my variable is empty or null?
// Inserção
Nome = tf_Nome.getText().toString();
Tipo = tf_Tipo.getText().toString();
Estoque = Integer.valueOf(tf_Estoque.getText().toString());
Preco = Double.valueOf(tf_Preco.getText().toString());
I do not know how to do it so that it verifies that the Inventory and Price are blank or null ...
} else if(Nome != null && Tipo != null && **Estoque < 0 && Preco < 0**) {
Estoque = 0;
Preco = 0;
BaseDados.InserirProdutos(Nome, Tipo, Estoque, Preco);
Limpar();
Toast.makeText(MainActivity.this, "Produto" +Nome+ " Adicionado com sucesso", Toast.LENGTH_SHORT).show();
}