为什么我无法在我的Activity中启动2x线程?

Tor*_*ups 1 java multithreading android

我将我的活动中的Web服务调用推送到一个线程(如下所示).我第一次在活动中这样做它工作正常(从我的edittext获取文本并加载服务以获取lat/lng数据)

但是,当我单击后退按钮(模拟器)并尝试在.start()之后第二次触发此线程时 在我的点击处理程序中 我在这里做错了什么?谢谢

private Thread getLocationByZip = new Thread() {
    public void run() {
        try {
            EditText filterText = (EditText) findViewById(R.id.zipcode);
            Editable zip = filterText.getText();

            LocationLookupService locationLookupService = new LocationLookupService();
            selectedLocation = locationLookupService.getLocationByZip(zip.toString());

            locationHandler.post(launchFindWithLocationInfo);
        } catch (Exception e) {
        }
    }
};

private Runnable launchFindWithLocationInfo = new Runnable() {
    @Override
    public void run() {
        try {
            Intent abc = new Intent(LocationLookup.this, FindWithLocation.class);
            startActivity(abc);
        } catch (Exception e) {

        }
    }
};

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.location);

    locationHandler = new Handler();
    findViewById(R.id.findbyzip).setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View view) {
            getLocationByZip.start();
        }
    });
}
Run Code Online (Sandbox Code Playgroud)

更新

在我给AsyncTask提出了很好的建议后,如果有人发现这一点,那么上面的线程/处理程序模型看起来像下面的asynctask

private class LocationLookupTask extends AsyncTask<String, Void, Location> {
    private ProgressDialog dialog;

    @Override
    protected void onPreExecute() {
        this.dialog = ProgressDialog.show(LocationLookup.this, "", "Loading...");
    }

    @Override
    protected Location doInBackground(String... zips) {
        Location selectedLocation = null;
        for (String zip : zips) {
            LocationLookupService locationLookupService = new LocationLookupService();
            selectedLocation = locationLookupService.getLocationByZip(zip);
        }
        return selectedLocation;
    }

    @Override
    protected void onPostExecute(Location location) {
        this.dialog.dismiss();

        ((AppDelegate) getApplicationContext()).setSelectedLocation(location);
        Intent abc = new Intent(LocationLookup.this, FindWithLocation.class);
        startActivity(abc);
    }
}
Run Code Online (Sandbox Code Playgroud)

现在要在onclick中调用它,你会这样做

findViewById(R.id.findbyzip).setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View view) {
                EditText filterText = (EditText) findViewById(R.id.zipcode);
                Editable zip = filterText.getText();

                LocationLookupTask task = new LocationLookupTask();
                task.execute(new String[]{zip.toString()});
            }
        });
Run Code Online (Sandbox Code Playgroud)

Ish*_*tar 6

你不能两次启动一个线程:

不止一次启动一个线程永远不合法.

取自Thread.start().

因此,您需要创建一个新线程并启动它.