私の Android アプリケーションには、(検索バーでキーワードを検索すると) Web サービスを使用する検索オプションがあり、画面に結果が表示されます。私が望むのは、最初の結果を消去/クリアしてから2番目の結果を表示し、最初の結果に追加しないことです.Androidの初心者として助けてください.
public class Srch_Widget extends ListActivity {
ListView lv;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mysearchscreen);
//In the search box, i will be typing an alphabet and click on "GO button"
goButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
//I'm using webservices to retrieve data(JSON String) and will get "EmpName", "EmpID",
"Salary" and the data will be in a single list called "searchlist" that I used below in
ser_listadapter.(if you want I can paste the entire webservices)
ser_listadapter();
}
});
}
public void ser_listadapter() {
ListAdapter adapter = new SimpleAdapter(this,searchlist,
R.layout.searchmain, new String[] { "EmpName", "EmpID",
"Salary" }, new int[] {
R.id.eid, R.id.ename, R.id.sal});
//"searchmain" layout contains 3 textviews with id's: eid,ename,sal
setListAdapter(adapter);
lv = getListView();
lv.setTextFilterEnabled(true);
}
}