我的AsyncTask出了什么问题?似乎没有正确执行

时间:2013-04-22 01:24:47

标签: android android-asynctask

我正在尝试运行AsyncTask来返回REST API的结果,但是我编写的代码似乎没有运行。当我通过应用程序运行AsyncTask应该运行的点时,不会显示任何内容。没有错误,数据永远不会显示。另外,当我输入时创建了一些log.i来显示返回的数据,LogCat窗口中没有显示任何内容。

以下是相关代码:

public class PlaceActivity extends FragmentActivity {

public static final String EXTRA_URL = "url";
public static final String GEO = "geo";
public static final LatLng LOCATION = new LatLng(53.551, 9.993);

private GoogleMap mMap;
protected Factual factual = new Factual("xyz", "xyz"); //new Factual code
private TextView resultText = null; //new Factual code

@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_place);
    setupActionBar();
    Bundle extras = getIntent().getExtras();

    if (extras != null) {
        String name = extras.getString(EXTRA_URL);
        String geo = extras.getString(GEO);
        Log.i("geo", geo); //currently from_user
        Log.i("name", name); //currently text
        TextView venueLocation = (TextView) findViewById(R.id.vLocation); //was detailsText
        //view.setText(name + " " + geo);
        TextView venName = (TextView) findViewById(R.id.vName);
        venueLocation.setText(geo);
        venName.setText(name);
        setUpMapIfNeeded();
        factualQuery(); //new Factual code
    }
}

private void setUpMapIfNeeded() {
    //Do a null check to confirm that we have not already instantiated the map.
    if (mMap == null) {
        mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
        if (mMap != null) {
            //do things to the map
            mMap.addMarker(new MarkerOptions().position(LOCATION).title(EXTRA_URL));
            mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(LOCATION,15));
            mMap.getUiSettings().setZoomControlsEnabled(false);
        }
    }
}

public void factualQuery() {
    resultText = (TextView) findViewById(R.id.resultText);
    FactualRetrievalTask task = new FactualRetrievalTask();

    double latitude = 34.06018; //set programmatically
    double longitude = -118.41835; //set programmatically
    int meters = 500; //have a default and then set programmatically if needed?
    LocationManager locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
    String locationProvider = LocationManager.GPS_PROVIDER;
    Location location = locationManager.getLastKnownLocation(locationProvider);
    if (location != null) {
        latitude = location.getLatitude();
        longitude = location.getLongitude();
    }


    Query query = new Query()
    .within(new Circle(latitude, longitude, meters))
    .field("cuisine").equal("Italian")
    .sortAsc("$distance")
    .only("name", "address", "tel");

    task.execute(query);
}

public class FactualRetrievalTask extends AsyncTask<Query, Integer, List<ReadResponse>> {

    @Override
    protected List<ReadResponse> doInBackground(Query... params) {
        List<ReadResponse> results = Lists.newArrayList(); 
        for (Query q : params) {
            results.add(factual.fetch("restaurants-us", q));
        }
        return results;
    }

    @Override
    protected void onProgressUpdate(Integer... progress) {
    }

    @Override
    protected void onPostExecute(List<ReadResponse> responses) {
        StringBuffer sb = new StringBuffer();
        for (ReadResponse response : responses) {
            for (Map<String, Object> restaurant : response.getData()) {
            String name = (String) restaurant.get("name");
            Log.i("name", name);
            String address = (String) restaurant.get("address");
            Log.i("address", address);
            String phone = (String) restaurant.get("tel");
            Log.i("tel", phone);
            Number distance = (Number) restaurant.get("$distance");
            sb.append(distance + " meters away: "+name+" @ " +address + ", call "+phone);
            sb.append(System.getProperty("line.separator"));
            }  
        }
        resultText.setText(sb.toString());
    }
}   

}

log.i中的onPostExecute()似乎没有显示任何内容,这让我相信它没有被执行。奇怪的是,此代码先前在不同的项目中运行,没有任何问题。

我认为这可能是与依赖关系相关的问题(因为这是围绕此代码的问题),但正如我所说的,我没有收到任何错误。依赖关系仍然是个问题吗?有什么看起来很奇怪吗?

谢谢!

3 个答案:

答案 0 :(得分:0)

您是否在模拟器中进行测试?如果是,默认情况下,模拟器不会为您提供位置,您必须提供坐标,然后它将提供给您的应用。见http://developer.android.com/tools/devices/emulator.html#geo 您可以尝试在设备上运行它,看看它是否运行网络提取。

答案 1 :(得分:0)

首先,在doInBackground()中添加一些Log.d来检查aynctask是否被网络阻止。 之前还有其他的aynctask运行吗? AsyncTask默认只使用单个线程,因此它将被其他Asynctask阻塞。

答案 2 :(得分:0)

原来这是依赖关系的问题。我尝试了以前没有工作的旧项目,突然间它开始工作了。我将当前项目与来自其他项目的依赖项进行了匹配,并解决了该问题。我最初犹豫不决,因为我在上一个项目及其依赖项中遇到了构建错误,但我删除了导致这种情况的原因,现在我觉得我很好。

但是,有人可以向我解释为什么依赖会解决问题,但我不会错误地告诉我某些方法/变量丢失了(即NullPointer,NoSuchMethod等)?