Sub Button1_Click
List1.Add(EditText1.Text)
EditText1.Text = ""
ListView1.AddSingleLine(EditText1.Text)
File.WriteList(File.DirRootExternal,"test.txt",List1)
EditText1.Text = ""
ListView1.AddSingleLine(EditText1.Text)
ListView1.AddSingleLine(EditText1.Text)
EditText1.Text = ""
You must do something wrong... It works... See Example...
At begin the listview (NOT tableview!) is filled with 3 items. If you click on button the text from edittext is added to the listview. And it DIRECTLY appears. Without need to reopen.
There is also a TableView in B4A. You wrote in the B4A-Part of the forum and therefore i thought you have problems with B4A, not B4J...
The problem in your code seems the wrong order of your commands. See Post in top of your lastpost ...