В представлении списка отображается только один элемент после добавления второго - PullRequest
0 голосов
/ 02 ноября 2019

почему мой пользовательский список просмотра отображает только самые последние данные (только одну строку в списке просмотра), которые были введены в EditText, нажав кнопку «Добавить» в этом окне, по праву он должен добавляться в следующую строку элементов списка исохраните и прочитайте данные в файл .dat. Может ли кто-нибудь помочь мне с моим кодом ниже?

Вот мой код MainActivity:

public class MainActivity extends AppCompatActivity implements 
View.OnClickListener {

private EditText edText;
private Button btnAdd;
private DatePickerDialog.OnDateSetListener dpdDateTimePicker;
private TextView tvDate;
private TextView tvListItem;
private TextView tvListDate;

private ArrayList<Items> arrItem;
private ItemListAdapter adapter;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    edText = findViewById(R.id.edText);
    btnAdd = findViewById(R.id.btnAdd);
    tvDate = findViewById(R.id.tvDate);

    tvListItem = findViewById(R.id.tvItem);
    tvListDate = findViewById(R.id.tvDate);

    ListView lvItemList = (ListView) findViewById(R.id.lvItem);

    //Date start
    tvDate.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Calendar cal = Calendar.getInstance();
            int year = cal.get(Calendar.YEAR);
            int month = cal.get(Calendar.MONTH);
            int day = cal.get(Calendar.DAY_OF_MONTH);

            DatePickerDialog dialog = new DatePickerDialog(MainActivity.this,
                    android.R.style.Theme_Holo_Dialog_MinWidth,
                    dpdDateTimePicker,
                    year, month,day);
            dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
            dialog.show();
        }
    });

    dpdDateTimePicker = new DatePickerDialog.OnDateSetListener() {
        @Override
        public void onDateSet(DatePicker view, int year, int month, int dayOfMonth) {
            month = month + 1;
            String date = dayOfMonth + "/" + month + "/" + year;
            tvDate.setText(date);
        }
    };
    //Date end

    //Read Data
    arrItem = FileHelper.readData(this);

    adapter = new ItemListAdapter(this, R.layout.adapter_view_layout, arrItem);
    lvItemList.setAdapter(adapter);

    btnAdd.setOnClickListener(this);
}

@Override
public void onClick(View v) {
    switch (v.getId()){
        case R.id.btnAdd:
            ListView lvItemList = (ListView) findViewById(R.id.lvItem);

            String itementered = edText.getText().toString();
            String dateentered = tvDate.getText().toString();

            Items item1 = new Items(itementered, dateentered);

            ArrayList<Items> ItemList = new ArrayList<>();
            ItemList.add(item1);

            FileHelper.writeData(ItemList, this);

            adapter = new ItemListAdapter(this, R.layout.adapter_view_layout, ItemList);
            lvItemList.setAdapter(adapter);

            //Clear TextView and EditText
            edText.setText("");
            tvDate.setText("");
            Toast.makeText(this,"Task Added", Toast.LENGTH_SHORT).show();
            break;

    }
}
}

Класс FileHelper для чтения / записи элемента в .dat

public class FileHelper {

public static final String FILENAME = "ItemList.dat";

public static void writeData(ArrayList<Items> item, Context context){
    try {
        FileOutputStream fos = context.openFileOutput(FILENAME, Context.MODE_PRIVATE);
        ObjectOutputStream oos = new ObjectOutputStream(fos);
        oos.writeObject(item);
        oos.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

public static ArrayList<Items> readData(Context context){
    ArrayList<Items> arItemList = null;

    try {
        FileInputStream fis = context.openFileInput(FILENAME);
        ObjectInputStream ois = new ObjectInputStream(fis);
        arItemList = (ArrayList<Items>) ois.readObject();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    }

    return arItemList;
}
}

Mycustom ItemListAdapter

public class ItemListAdapter extends ArrayAdapter<Items> {

private Context mContext;
int mResource;

public ItemListAdapter(Context context, int resource, ArrayList<Items> objects) {
    super(context, resource, objects);
    this.mContext = context;
    this.mResource = resource;
}

@NonNull
@Override
public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
    //get the Item info
    String task = getItem(position).getTask();
    String date = getItem(position).getDate();

    //Create the task object with the information
    Items item = new Items(task, date);

    LayoutInflater inflater = LayoutInflater.from(mContext);
    convertView = inflater.inflate(mResource, parent, false);

    TextView tvDate = (TextView) convertView.findViewById(R.id.tvDate);
    TextView tvTask = (TextView) convertView.findViewById(R.id.tvItem);

    tvDate.setText(date);
    tvTask.setText(task);

    return convertView;

}
}

Класс товара

public class Items implements Serializable {
private String task;
private String date;

public Items(String task, String date) {
    this.task = task;
    this.date = date;
}

public String getTask() {
    return task;
}

public void setTask(String task) {
    this.task = task;
}

public String getDate() {
    return date;
}

public void setDate(String date) {
    this.date = date;
}
}

1 Ответ

0 голосов
/ 02 ноября 2019

В вашей функции onClick вы всегда создаете новый ArrayList<Items> ItemList и добавляете к нему один Items, затем создаете новый ItemListAdapter, который отображает этот новый список (из одного элемента) в lvItemList.

Код должен быть больше похож на приведенный ниже.

@Override
public void onClick(View v) {
    switch (v.getId()){
        case R.id.btnAdd:
            ListView lvItemList = (ListView) findViewById(R.id.lvItem);

            String itementered = edText.getText().toString();
            String dateentered = tvDate.getText().toString();

            Items item1 = new Items(itementered, dateentered);

            //do not create a new ArrayList
                //ArrayList<Items> ItemList = new ArrayList<>();
                //ItemList.add(item1);
            //append item1 to the existing one instead
            arrItem.add(item1);

            //you might have to change this line to handle addition of single item
                //FileHelper.writeData(ItemList, this);
            //however after a quick look at FileHelper it seems that
            FileHelper.writeData(arrItem, this);    //might work

            //now you also don't need to/shouldn't create a new adapter
                //adapter = new ItemListAdapter(this, R.layout.adapter_view_layout, ItemList);
                //lvItemList.setAdapter(adapter);
            //just notify that arrItem has changed and the adapter will update the ListView
            adapter.notifyDataSetChanged();

            //Clear TextView and EditText
            edText.setText("");
            tvDate.setText("");
            Toast.makeText(this,"Task Added", Toast.LENGTH_SHORT).show();
            break;

    }
}

Обратите внимание, что я также включил adapter.notifyDataSetChanged(), так как это действительно причина, почему адаптерыудобный. Сначала вы устанавливаете adapter на lvItemList в onCreate:

adapter = new ItemListAdapter(this, R.layout.adapter_view_layout, arrItem);
lvItemList.setAdapter(adapter);

Отображает содержимое arrItem в lvItemList. Если позднее вы захотите добавить элемент, вы добавляете его в arrItem и вызываете adapter.notifyDataSetChanged(), чтобы отобразить изменения.

Примечание к FileHelper. Похоже, FileHelper.writeData() перезаписывает весь файл, поэтому запись arrItem должна дать желаемый результат, когда все элементы, отображаемые в lvItemList, также сохраняются в файле.

...