列表没有填充

时间:2012-07-05 05:18:18

标签: java android listview

我正在创建一个应用程序,列出列表视图中附近的地址,但由于某种原因,地址不会进入列表。我错过了地址集的内容还是?...

它发生在for循环中。我希望它能够读取我得到的地址列表,并将我想要的信息仅修改为必要的位,例如街道号码和邮政编码,而不是大量的数字。

每次我运行应用程序时,列表仍为空白。

package com.atonea.ps;


import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Locale;

import android.app.Activity;
import android.content.Context;
import android.location.Address;
import android.location.Criteria;
import android.location.Geocoder;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;

public class PSActivity extends Activity {
protected static final Location Location = null;
/** Called when the activity is first created. */
String location_text="";
String here="";
final ArrayList<String> addressbook = new ArrayList<String>();


@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    Button goButton = (Button) findViewById(R.id.beginButton);
    LocationManager locationManager; 
    String context = Context.LOCATION_SERVICE; 
    locationManager = (LocationManager)getSystemService(context); 

    Criteria crta = new Criteria(); 
    crta.setAccuracy(Criteria.ACCURACY_FINE); 
    crta.setAltitudeRequired(false); 
    crta.setBearingRequired(false); 
    crta.setCostAllowed(true); 
    crta.setPowerRequirement(Criteria.POWER_LOW); 
    String provider = locationManager.getBestProvider(crta, true);  
    Location location = locationManager.getLastKnownLocation(provider); 
    updateWithNewLocation(location);

    goButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
        }

    });         



}
private void updateWithNewLocation(Location location) { 
    String latLong; 
    TextView uhoh = (TextView) findViewById(R.id.texty);

    ListView listview = (ListView) findViewById(R.id.listview1);
    ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, addressbook);
    listview.setAdapter(arrayAdapter);

    String addressString = "no address found"; 
    Address fulladdress;
    String street;
    String zip;
    String addresstogether;

    if(location!=null) { 
    double lat = location.getLatitude(); 
    double lon = location.getLongitude(); 
    latLong = "Lat:" + lat + "\nLong:" + lon; 

    double lattitude = location.getLatitude(); 
    double longitude = location.getLongitude();     
    Geocoder gc = new Geocoder(this,Locale.getDefault()); 

    try { 
    List addresses= gc.getFromLocation(lattitude, longitude, 1); 

    if(addresses.size()>0) { 
        for (int a = 0; a > 6; a++) {
            fulladdress = ((Address) addresses.get(a));
            street = fulladdress.getAddressLine(a);
            zip = fulladdress.getPostalCode();
            addresstogether = street+" "+zip;
            addressbook.add(a, addresstogether);
            arrayAdapter.notifyDataSetChanged();
            Toast.makeText(getApplicationContext(),addresstogether, Toast.LENGTH_LONG).show();
            }
        } 
    } catch (Exception e) { 
    } 
    } else { 
    latLong = " NO Location Found "; 
    } 

    uhoh.setText("your Current Position is :\n" +latLong + "\n " + addressString ); 
    } 
}

2 个答案:

答案 0 :(得分:8)

for (int a = 0; a > 6; a++) {

你永远不会进入这个循环。从0开始,总是小于6。

答案 1 :(得分:1)

此条件for (int a = 0; a > 6; a++)不正确。

当您初始化a with 0然后检查a > 6时,它将始终为false,并且您的程序永远不会进入循环。

必须是(int a = 0; a < 6; a++)