2012-07-05 50 views
0

我正在制作一个应用程序,该应用程序将在列表视图中列出附近的地址,但由于某些原因,地址不会进入列表。我是否缺少地址集合或?...List is not populating

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

'a> 6'应该是'a st0le

回答

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

你永远不会进入这个循环。您从0开始始终小于6.

+0

哇......我很笨。像真的愚蠢 – AtlasOnEarth

+0

请确保你看st0le评论。当API返回任何答案时,您可能会遇到不同的问题。 –

+2

请将此问题标记为答案,方法是单击乐谱旁边的勾号。 :) – Brad

1

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

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

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