2

如何listView使用 Android 代码将数据库表中的数据放入其中。

这是 PHP 代码,我需要 Android 代码:

$your_querry="select * from member ";
$query=mysql_query($your_querry);
$list=array();
while($row=mysql_fetch_assoc($query))
{
    $list[]=$row;
}

echo json_encode($list);
4

2 回答 2

3

对于这个问题,请使用 JSONParser.java 和 ListAdapter.java ,

如果您的列表视图包含图像,我强烈建议您使用

1-MemoryCache.java.
2-FileCache.java.
3-ImageLoader.java.
4-Utils.java.

这就是我想的

于 2014-03-13T13:06:21.357 回答
1

尝试这样的事情

DefaultHttpClient   httpclient = new DefaultHttpClient(new BasicHttpParams());
HttpGet httppost = new HttpGet("path/to/your/php-script");

httpGet.setHeader("Content-type", "application/json");

InputStream inputStream = null;
String result = null;
try {
    HttpResponse response = httpclient.execute(httppost);           
    HttpEntity entity = response.getEntity();

    inputStream = entity.getContent();

    // Now parse the JSON with some JSON library like Jackson, Gson or JSON.org
    ...
    // Then fill the listView with the objects you parsed
    ...
于 2013-08-16T14:21:38.770 回答