【问题标题】:Android: Populate listview with php and mysql database with a JOIN queryAndroid:使用 JOIN 查询使用 php 和 mysql 数据库填充列表视图
【发布时间】:2015-10-28 05:23:32
【问题描述】:

大家好,我想用数据库项填充列表视图。但是使用任何 JOIN(inner, left or right) 来合并我的两个表,以便查看表 1 和表 2 中的选定项目。

这是我的 PHP 代码:

<?php   
$link = mysql_pconnect("localhost", "root", "") or die("Could not connect");
mysql_select_db("dbmobile_class_record") or die("Could not select database");

$arr = array();

$rs = mysql_query("SELECT tb_student.stud_id, tb_student.stud_name, tb_attendance.remark FROM tb_student LEFT JOIN tb_attendance ON tb_student.stud_id=tb_attendance.stud_id");

while($obj = mysql_fetch_object($rs)) {
$arr[] = $obj;
}
echo ''.json_encode($arr).'';
?>

这是 JSON:

[

    {
        "stud_id":"20131299",
        "stud_name":"Angelo Velayo",
        "remark":"Present"
    },
    {
        "stud_id":"20131296",
        "stud_name":"Jeffrey Oliveras",
        "remark":"Present"
    }

]

如您所见,查询有效,它合并了两个表。

这是我的 Java 文件:

public class ViewAttendance extends AppCompatActivity {
    private static final String TAG = ViewAttendance.class.getSimpleName();
    private static final String url = "http://10.0.2.2/MobileClassRecord/getStudentAttendance.php";
    private ProgressDialog pDialog;
    private List<StudentAttendanceList> studAttList = new ArrayList<>();
    private ListView mylistView;
    private CustomStudAttendanceListAdapter adapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_view_attendance);
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);

        mylistView = (ListView) findViewById(R.id.list);
        adapter = new CustomStudAttendanceListAdapter(this, studAttList);
        mylistView.setAdapter(adapter);
        mylistView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

            }
        });

        pDialog = new ProgressDialog(this);
        pDialog.setMessage("Loading...");
        pDialog.show();

        JsonArrayRequest request = new JsonArrayRequest(url, new Response.Listener<JSONArray>() {
            @Override
            public void onResponse(JSONArray response) {
                Log.d(TAG, response.toString());
                hidePDialog();

                for (int i = 0; i < response.length(); i++) {
                    try {
                        JSONObject jsonObject = response.getJSONObject(i);
                        StudentAttendanceList sAttList = new StudentAttendanceList();
                        sAttList.setId(jsonObject.getString("stud_id"));
                        sAttList.setName(jsonObject.getString("student_name"));
                        sAttList.setRemark(jsonObject.getString("remark"));

                        studAttList.add(sAttList);
                    } catch (JSONException e) {
                        e.printStackTrace();
                    }
                }
                adapter.notifyDataSetChanged();
            }
        }, new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError volleyError) {
                VolleyLog.d(TAG, "Error: " + volleyError.getMessage());
                hidePDialog();
            }
        });
        AppController.getInstance().addToRequestQueue(request);
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        hidePDialog();
    }

    private void hidePDialog() {
        if (pDialog != null) {
            pDialog.dismiss();
            pDialog = null;
        }
    }

这是我在填充列表视图时遵循的tutorial

我的问题:列表视图中没有显示项目

【问题讨论】:

    标签: php android mysql listview


    【解决方案1】:

    JSONArray 获取数据后不要做adapter.notifyDataSetChanged(); 你已经填写了你的适配器检查这个代码。因为有时它没有 notifyDataSetChanged 所以我认为你必须试试这个。谢谢。

    public class ViewAttendance extends AppCompatActivity {
    private static final String TAG = ViewAttendance.class.getSimpleName();
    private static final String url = "http://10.0.2.2/MobileClassRecord/getStudentAttendance.php";
    private ProgressDialog pDialog;
    private List<StudentAttendanceList> studAttList = new ArrayList<>();
    private ListView mylistView;
    private CustomStudAttendanceListAdapter adapter;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_view_attendance);
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    
        mylistView = (ListView) findViewById(R.id.list);
        mylistView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
    
            }
        });
    
        pDialog = new ProgressDialog(this);
        pDialog.setMessage("Loading...");
        pDialog.show();
    
        JsonArrayRequest request = new JsonArrayRequest(url, new Response.Listener<JSONArray>() {
            @Override
            public void onResponse(JSONArray response) {
                Log.d(TAG, response.toString());
                hidePDialog();
    
                for (int i = 0; i < response.length(); i++) {
                    try {
                        JSONObject jsonObject = response.getJSONObject(i);
                        StudentAttendanceList sAttList = new StudentAttendanceList();
                        sAttList.setId(jsonObject.getString("stud_id"));
                        sAttList.setName(jsonObject.getString("student_name"));
                        sAttList.setRemark(jsonObject.getString("remark"));
    
                        studAttList.add(sAttList);
                    } catch (JSONException e) {
                        e.printStackTrace();
                    }
                }
    
                 adapter = new CustomStudAttendanceListAdapter(this, studAttList);
                 mylistView.setAdapter(adapter);
    
            }
        }, new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError volleyError) {
                VolleyLog.d(TAG, "Error: " + volleyError.getMessage());
                hidePDialog();
            }
        });
        AppController.getInstance().addToRequestQueue(request);
    }
    
    @Override
    protected void onDestroy() {
        super.onDestroy();
        hidePDialog();
    }
    
    private void hidePDialog() {
        if (pDialog != null) {
            pDialog.dismiss();
            pDialog = null;
        }
    }
    

    【讨论】:

    • 但有时它不会刷新所以我建议这样
    猜你喜欢
    • 2012-05-28
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-10-06
    • 2017-11-06
    • 2011-01-24
    相关资源
    最近更新 更多