当我将数据放入ArrayList
并添加到ListView
时。但ListView
上没有数据显示,但我确信已检索到这些数据。
用于测试的系统输出是正确的。(我的数据)
这是我的pseudo-code
:
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import com.parse.FindCallback;
import com.parse.ParseException;
import com.parse.ParseObject;
import com.parse.ParseQuery;
import java.util.ArrayList;
import java.util.List;
public class query_page extends AppCompatActivity {
public ArrayList<String> show_Location, show_Messages;
public ListView listView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_query_page);
show_Location = new ArrayList<String>();
show_Messages = new ArrayList<String>();
listView = (ListView) findViewById(R.id.listView);
//Parse.enableLocalDatastore(this);
//Parse.initialize(this,"Kfl0hkIIHec4uwhufpAc9luukPhz2H4QPEQeCgZY","S0eka3H15A58ACGKuvbnIsnKFS6gVQRz9BUCTnQw");
ParseQuery<ParseObject> query = ParseQuery.getQuery("Danger");
query.findInBackground(new FindCallback<ParseObject>() {
@Override
public void done(List<ParseObject> list, ParseException e) {
if (e == null) {
for (ParseObject j : list) {
show_Location.add(j.getString("DangerLocation"));
show_Messages.add(j.getString("DangerMessage"));
System.out.println("Location: " + j.getString("DangerLocation"));
System.out.println("Messages: " + j.getString("DangerMessage"));
}
ArrayAdapter adapter = new ArrayAdapter(query_page.this, android.R.layout.simple_list_item_1, show_Location);
listView.setAdapter(adapter);
} else {
System.out.println("Exception occur! ");
}
}
});
}
}
这是我的XML文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.s1011423_term_project.query_page">
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listView"></ListView>
</RelativeLayout>
答案 0 :(得分:1)
使您的适配器与Arraylist一起成为您班级中的一个字段。
private ArrayAdapter adapter;
并且不在Parse回调中初始化适配器。您不需要列表中的任何数据来设置适配器。
所以移动这些行
adapter = new ArrayAdapter(query_page.this, android.R.layout.simple_list_item_1, show_Location);
listView.setAdapter(adapter);
直接在
之后listView = ...;
在Parse代码的done
末尾,调用
adapter.notifyDataSetChanged();
原因是您更改了基础数据。您也可以直接添加到适配器。
adapter.add(j.getString("DangerLocation"));
答案 1 :(得分:0)
还要确保activity_mail.xml中定义的ListView没有0作为宽度和高度(在推断约束期间它可能变为0) 确保它具有match_parent或任何大于0的值 机器人:layout_width =&#34; match_parent&#34; 机器人:layout_height =&#34; match_parent&#34;