只有一个onClick监听器响应初始启动android studio

时间:2016-08-29 06:55:42

标签: java android google-maps android-maps-v2

我有3个按钮,我正在使用mapactivity。只有第一个按钮响应,然后第二个按钮按时间顺序响应。我已经在这些按钮中存储了标记,所以我希望它们在我点击其中任何一个时单独响应

这是我的.java文件

import android.support.v4.app.FragmentActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;

public class MapsActivity extends FragmentActivity implements  OnMapReadyCallback {

    private GoogleMap mMap;

    final Button button1 = (Button) findViewById(R.id.buttonMaps);
    final Button button2 = (Button)findViewById(R.id.buttonMaps2);
    final Button button3 = (Button)findViewById(R.id.buttonMaps3);

    @Override
    protected void onCreate(Bundle savedinstancestate) {
        super.onCreate(savedinstancestate);
        setContentView(R.layout.activity_maps);

        button1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                mMap.clear();
                if (button1.isShown()) {

                    mMap.addMarker(new MarkerOptions().position(new LatLng(, )).title("").snippet("My Location").icon(BitmapDescriptorFactory.fromResource(R.mipmap.ic_launcher)));

                    button2.setOnClickListener(new View.OnClickListener() {
                        @Override
                        public void onClick(View v) {

                            mMap.clear();
                            if (button2.isShown()) {

                                mMap.addMarker(new MarkerOptions().position(new LatLng()).title("").icon(BitmapDescriptorFactory.fromResource(R.mipmap.ic_launcher_hospital)));
                                                              mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(), ));

                                button3.setOnClickListener(new View.OnClickListener() {
                                    @Override
                                    public void onClick(View v) {

                                        mMap.clear();
                                        if (button3.isShown()) {

                                            mMap.addMarker(new MarkerOptions().position(new LatLng(`enter code here`)).title(" ").icon(BitmapDescriptorFactory.fromResource(R.mipmap.ic_launcher_busstop)));
                                                              mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(), ));

                                        }

                                    }

                                });
                            }
                        }
                    });
                }
            }
        });
    }
    // Obtain the SupportMapFragment and get notified when the map is ready to be used.
    SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this);

/**
 * Manipulates the map once available.
 * This callback is triggered when the map is ready to be used.
 * This is where we can add markers or lines, add listeners or move the camera. In this case,
 * we just add a marker near Sydney, Australia.
 * If Google Play services is not installed on the device, the user will be prompted to install
 * it inside the SupportMapFragment. This method will only be triggered once the user has
 * installed Google Play services and returned to the app.
 */
    @Override
    public void onMapReady(GoogleMap googleMap) {
        mMap = googleMap;
        mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng ( ),));
    }
}

这是我的activity_maps.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MapsActivity">

        <fragment xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:map="http://schemas.android.com/apk/res-auto"
            xmlns:tools="http://schemas.android.com/tools"
            android:id="@+id/map"
            android:name="com.google.android.gms.maps.SupportMapFragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            tools:context=".MapsActivity"
            tools:layout="@android:layout/simple_spinner_dropdown_item" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:text="text1"
            android:padding="8dp"
            android:background="#53fed0"
            android:id="@+id/buttonMaps"
            android:layout_marginLeft="90dp"
            android:layout_marginStart="90dp"
            android:layout_alignParentTop="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="text2"
            android:id="@+id/buttonMaps2"
            android:layout_marginTop="35dp"
            android:layout_below="@+id/buttonMaps"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:clickable="true" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Bus Stops"
            android:id="@+id/buttonMaps3"
            android:layout_below="@+id/buttonMaps2"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_marginTop="35dp"
            android:clickable="true"/>
</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

您正在其他onclicklisteners中设置onclicklisteners。在您的实现中,当单击button1时,设置onclicklistener为button2,当单击按钮2时(在button1单击之后),设置on3licklistnere for button3。直接在oncreate中设置所有3个onclicklistener。

答案 1 :(得分:0)

只有按下按钮1才能定义按钮2-3按下。需要单独识别。

class BackGroundTasks extends AsyncTask<String, String, Void> {
    private String operation, itemRef;
    private ArrayList<Model_BarcodeDetail> changedBarcodeList, barcodeList;
    private ArrayList<String> changeRefList;
    String page;

    public BackGroundTasks(String operation, String itemRef, String page) {
        this.operation = operation;
        this.itemRef = itemRef;
        this.page = page;
    }

    @Override
    protected void onPreExecute() {
        // TODO Auto-generated method stub
        super.onPreExecute();
        if (dialog == null) {
            dialog = ProgressDialog.show(mActivity, null,
                    "Please wait ...", true);

        }

    }

    @Override
    protected Void doInBackground(String... params) {
        // TODO Auto-generated method stub
        try{
        if (!connection.HaveNetworkConnection()) {
            dialog.dismiss();
             connection.showToast(screenSize,  "No Internet Connection.");
            return null;
        }



        if (operation.equalsIgnoreCase("DownloadChangeItemRef")) {
            changeRefList = DownloadChangeItemRef(params[1]);
            if (changeRefList != null && !changeRefList.isEmpty()) {
                RefList1.addAll(changeRefList);
            }


        }
        if ((changeRefList != null && changeRefList.size() >0)) {
            setUpdatedBarcodes(changedBarcodeList);
            }

        }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

    @SuppressLint("SimpleDateFormat")
    @Override
    protected void onPostExecute(Void result) {

        super.onPostExecute(result);
    }

}




 ArrayList<String> DownloadChangeItemRef(String api_token) {
    ArrayList<String> changedRefList = null;
    HttpClient httpClient = new DefaultHttpClient();
    HttpPost postRequest = new HttpPost(thoth_url + "/" + todaysDate
            + "?&return=json");

    String url = thoth_url + "/" + todaysDate + "?&return=json";
    String result = "";
    try {
        changedRefList = new ArrayList<String>();
        ResponseHandler<String> responseHandler = new BasicResponseHandler();
        result = httpClient.execute(postRequest, responseHandler);
        JSONObject jsonObj = new JSONObject(result);
        JSONArray jsonarray = jsonObj.getJSONArray("changes");
        if (jsonarray.length() == 0) {
            return null;
        }
        for (int i = 0; i < jsonarray.length(); i++) {
            JSONObject obj = jsonarray.getJSONObject(i);
            changedRefList.add(obj.getString("ref"));
        }
    } catch (IllegalStateException e) {
        // TODO Auto-generated catch block
        // when there is no thoth url
        Log.i("inclient: ", e.getMessage());

        return null;
    } catch (Exception e) {
        // when there are no itemref

        return null;
    }
    return changedRefList;
}

 private boolean setUpdatedBarcodes(
            final ArrayList<Model_BarcodeDetail> changedBarcodeList2) {

        try {
                    BarcodeDatabase barcodeDatabase = new BarcodeDatabase(mActivity);
                    barcodeDatabase.open();
                    for (Model_BarcodeDetail model : changedBarcodeList2) {
                        barcodeDatabase.updateEntry(model, userId);
                    }

                    n++;
                    barcodeDatabase.close();
                    if (RefList1.equals(RefList)) {

                        if (dialog != null) {
                            dialog.dismiss();
                        }
                         connection.showToast(screenSize,  "Barcodes updated successfully");
                    }

        } catch (Exception e) {
            Log.i("Exception caught in: ", "setDownloadedBarcodes method");
            e.printStackTrace();
            return false;
        }
        return true;

    }