My activity is a listview containing Textview and edittext per row. It works great but one weird issues. When resuming the activity the edittext fields are in the opposite order. If you onpause then onresume again it's back in the correct order. This can be repeated over and over again. Also if the user clicks in one of the edittext while they are in opposite order, once leaving input they are again in the correct order. Hoping someone here knows what I'm missing to insure that they are always in the correct order.
public class editpage extends ListActivity {
private dbadapter mydbhelper;
private PopupWindow pw;
public static SimpleCursorAdapter editadapter;
public static ArrayList<String> editTextList = new ArrayList<String>();
private ArrayList<EditText> m_edit = new ArrayList<EditText>();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.edit_list);
m_edit.clear();
mydbhelper = new dbadapter(this);
mydbhelper.open();
fillData();
}
//Menu Items
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.layout.editmenu, menu);
return true;
}
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.clear:
clear();
return true;
case R.id.help:
showHelp();
return true;
}
return false;
}
private void clear() {
editId();
for(int i= 0; i<getCount(); i++){
EditText editText = m_edit.get(i);
editText.setText("");
}
}
public void showHelp() {
LayoutInflater inflater = (LayoutInflater)
this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
pw = new PopupWindow(
inflater.inflate(R.layout.help, null, false),
LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT,
true);
pw.showAtLocation(this.findViewById(R.id.textType), Gravity.CENTER, 0, 0);
}
public void onClickHelp(View helper){pw.dismiss();
}
//size of adapter and arrays
public static int getCount(){
return editadapter.getCount();
}
//filldata if statement to use "quickstart" function
public void fillData() {
if(main.quickStart == "Cate"){
Cursor e = mydbhelper.getUserWord();
startManagingCursor(e);
String[] from = new String[] {dbadapter.KEY_USERWORD,};
int[] to = new int[] {R.id.textType,};
editadapter = new SimpleCursorAdapter(this, R.layout.edit_row, e, from, to);
ListView list = getListView();
View footer = getLayoutInflater().inflate(R.layout.footer_layout, list, false);
list.addFooterView(footer);
setListAdapter(editadapter);}
if(main.quickStart == "Quick"){
Cursor e = mydbhelper.getQuickWord();
startManagingCursor(e);
String[] from = new String[] {dbadapter.KEY_USERWORD,};
int[] to = new int[] {R.id.textType,};
editadapter = new SimpleCursorAdapter(this, R.layout.edit_row, e, from, to);
ListView list = getListView();
View footer = getLayoutInflater().inflate(R.layout.footer_layout, list, false);
list.addFooterView(footer);
setListAdapter(editadapter);
}
}
//change R.id.editText to a unquie id to save and use in next activity
private void editId(){
if(findViewById(R.id.editText) == null){
}else{
for(int editI= 0; editI<getCount(); editI++){
EditText editText = (EditText) findViewById(R.id.editText);
editText.setId(editI);
editText.addTextChangedListener(editWatcher);
m_edit.add(editI, editText);
}}
}
//footer button with text validator
public void onClick(View footer){
final MediaPlayer editClickSound = MediaPlayer.create(this, R.raw.button50);
editClickSound.start();
editId();
for (int i = 0; i < getCount(); i++){
String editString = m_edit.get(i).getText().toString();
editTextList.add(i, editString);}
if (editTextList.contains("")){
Toast.makeText(this, "Please fill in all fields", 1000).show();
}else{
startActivity(new Intent("wanted.pro.madlibs.OUTPUT"));
};
}
//my textwatcher
private TextWatcher editWatcher = (new TextWatcher() {
public void afterTextChanged(Editable edit) {
editadapter.getFilter().filter(edit);
editadapter.notifyDataSetChanged();
}
public void beforeTextChanged(CharSequence edit, int start, int count,
int after) {
}
public void onTextChanged(CharSequence edit, int start, int before,
int count) {
}
});
//save state for onresume/onpause
private void resumeSave(){
if(editTextList.isEmpty()){
}else{for (int editI= 0; editI<getCount(); editI++){
EditText editText = m_edit.get(editI);
editText.setText(editTextList.get(editI));
}}
}
private void pauseSave(){
if(editTextList.isEmpty()){
}else{for (int editI= 0; editI<getCount(); editI++){
String editString = m_edit.get(editI).getText().toString();
editTextList.add(editI, editString);}
}}
//unused
@Override
protected void onListItemClick(ListView list, View v, int position, long id)
{
super.onListItemClick(list, v, position, id);
}
//onresume and onpause
@Override
protected void onResume() {
editId();
resumeSave();
mydbhelper.open();
super.onResume();
}
@Override
protected void onPause() {
pauseSave();
super.onPause();
}
}