stringArrayに文字列を追加するときに問題が発生しました。毎回クラッシュします:
ArrayList<String> newString, limits;
String pruebas;
pruebas=e1.getText().toString();
if (pruebas == null || pruebas.equals("")) {
Toast.makeText(Limits.this, "You did not enter a number", Toast.LENGTH_SHORT).show();
return;
}
else{
limits.add(pruebas);
}
どんな助けでもいただければ幸いです!
ありがとうございました