在listview Android中显示回显数据[关闭]

So, my php file echo a list of data separated by format now when I try to display it in list view, it consider the entire content as a single list item in android. How do I tell my listadapter to consider a new element at xx position as there is no loop in my android code.

<?php 
$query="SELECT * FROM `safa_offers` ORDER BY id DESC ";
    $result = mysql_query($query) or die(mysql_error());



while($row = mysql_fetch_assoc($result))

                                        {
    echo  "Offer Name
".$row['offer_name']. " 
 
 "."Start Date :
".$row['offer_start']."
 
"."End Date 
".$row['offer_end']."
 
"."Details: 
".$row['offer_description']."

";
                                        }

 mysql_close($cn);
 exit();

 ?>

Android:

void login(){
    try{            

        HttpClient httpclient = new DefaultHttpClient();
        HttpPost httppost = new HttpPost("http://agfsrg/Offers.php");
        ResponseHandler<String> responseHandler = new BasicResponseHandler();
        String response = httpclient.execute(httppost, responseHandler);

        //This is the response from a php application
        final String reverseString = response;
        //offers.setText(reverseString);
        //Toast.makeText(this, "response" + reverseString, Toast.LENGTH_LONG).show();


        runOnUiThread(new Runnable() {
            public void run() {
                //offers.setText(reverseString);
                listAdapter.add( reverseString );
                dialog.dismiss();
            }
        });

Couldn't you just split the string on the newline character? You can just use the asList funtion from the array class since split returns an array. See here http://developer.android.com/reference/java/util/Arrays.html#asList(T...). Is this what you are looking for?