RecyclerView안 EditText에 입력한 모든 데이터를
RecyclerView 밖 Button을 눌렀을 시 가져오고 싶은데
saveButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
StringBuffer stringBuffer = new StringBuffer();
for(int i=0;i<itemCount;i++){
View view = rv.getLayoutManager().findViewByPosition(i);
if(view != null){
EditText editText = (EditText)view.findViewById(R.id.dataEdit);
stringBuffer.append(i + " : ").append(editText.getText().toString()).append(" / ");
}
}
Log.d(TAG,"stringbuffer :: "+stringBuffer.toString());
}
});
이렇게 하면 화면에 보여지는 부분들만 가져와지더라구요ㅠㅠ
어떻게 해야 전체의 내용을 가져올 수 있을까요??