-3
私はListView
を持っています。私はそれのための追加機能を配置しました。私のコードは:ListView単一の選択肢がアイテムのサイズに適応する
public void add(){
String name = (allergytxt.getText().toString() + "\n" +
desctxt.getText().toString() + "\n" +
doctxt.getText().toString() + "\n" +
notxt.getText().toString());
if (!name.isEmpty() && name.length() > 0) {
adapter.add(name);
adapter.notifyDataSetChanged();
allergytxt.setText("");
desctxt.setText("");
doctxt.setText("");
notxt.setText("");
Toast.makeText(MainActivity.this, "added",Toast.LENGTH_SHORT).show();
}
}
明らかにlistviewは2行のテキストしか表示しませんでした。 Heeeelp。 (私は途中でandrodid studioとjavaの新機能です)