成功连接到服务器(我的本地主机)后,我想检索服务器发送给我的数据。任何人都可以建议我该怎么做? 收到这些数据后,我必须将它存储到一个数组中,然后必须逐个将其提取到下拉列表中。
由于
答案 0 :(得分:0)
Sheetal我没有使用过服务器的任何应用程序,但我在本地检索数据,然后将它放在一个数组中,并在微调器中显示,这可能有助于你
Cursor c = db.fetchAllReminders();
startManagingCursor(c);
// Create an array to specify the fields we want (only the TITLE)
String[] from = new String[]{DataManager.NAME};
// and an array of the fields we want to bind in the view
int[] to=new int[] { android.R.id.text1 };
// to[0]=android.R.id.text1;
final Spinner spinner = (Spinner) this.findViewById(R.id.spins);
// Now create a simple cursor adapter and set it to display
final SimpleCursorAdapter reminders =new SimpleCursorAdapter(this,
android.R.layout.simple_spinner_item, c, from, to);
spinner.setAdapter(reminders);