0

我正在制作一个应用程序,它将在列表视图中列出附近的地址,但由于某种原因,地址没有进入列表。我是否遗漏了地址集合中的某些内容或?...

它发生在 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 ); 
    } 
}
4

2 回答 2

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

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

于 2012-07-05T05:20:45.183 回答
1

这个条件for (int a = 0; a > 6; a++)是不正确的。

正如你已经初始化a with 0然后检查a > 6它总是错误的,你的程序永远不会进入循环。

一定是为了(int a = 0; a < 6; a++)

于 2012-07-05T05:24:07.057 回答