org.traccar.manager.DevicesFragment.java Source code

Java tutorial

Introduction

Here is the source code for org.traccar.manager.DevicesFragment.java

Source

/*
 * Copyright 2015 - 2016 Anton Tananaev (anton.tananaev@gmail.com)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.traccar.manager;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.ListFragment;
import android.support.v7.widget.PopupMenu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;

import org.traccar.manager.model.Device;

import java.util.List;

import okhttp3.OkHttpClient;
import retrofit2.Response;
import retrofit2.Retrofit;

public class DevicesFragment extends ListFragment implements View.OnClickListener {

    public static final String EXTRA_DEVICE_ID = "deviceId";
    public static final String EXTRA_DEVICE_STATUS = "deviceStatus";

    class PopupAdapter extends ArrayAdapter<Device> {

        PopupAdapter(List<Device> items) {
            super(getActivity(), R.layout.list_item, android.R.id.text1, items);
        }

        @Override
        public View getView(int position, View convertView, ViewGroup container) {
            View view = super.getView(position, convertView, container);
            View popupText = view.findViewById(android.R.id.text1);
            popupText.setTag(getItem(position));
            popupText.setOnClickListener(DevicesFragment.this);
            return view;
        }
    }

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);

        final MainApplication application = (MainApplication) getActivity().getApplication();
        application.getServiceAsync(new MainApplication.GetServiceCallback() {
            @Override
            public void onServiceReady(OkHttpClient client, Retrofit retrofit, WebService service) {
                service.getDevices().enqueue(new WebServiceCallback<List<Device>>(getContext()) {
                    @Override
                    public void onSuccess(Response<List<Device>> response) {
                        setListAdapter(new PopupAdapter(response.body()));
                    }
                });
            }
        });
    }

    @Override
    public void onClick(final View view) {
        view.post(new Runnable() {
            @Override
            public void run() {
                showPopupMenu(view);
            }
        });
    }

    private void showPopupMenu(View view) {
        final PopupAdapter adapter = (PopupAdapter) getListAdapter();
        final Device device = (Device) view.getTag();
        PopupMenu popup = new PopupMenu(getActivity(), view);

        popup.getMenuInflater().inflate(R.menu.popup, popup.getMenu());

        popup.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
            @Override
            public boolean onMenuItemClick(MenuItem menuItem) {
                switch (menuItem.getItemId()) {
                case R.id.action_show_on_map:
                    finishDevicesActivity(device.getId(), device.getStatus());
                    return true;
                case R.id.action_send_command:
                    startSendCommandActivity(device.getId());
                    return true;
                case R.id.action_get_route:
                    startGetRouteActivity(device.getId());
                    return true;

                case R.id.action_get_geofence:
                    startGetGeofenceActivity(device.getId());
                    return true;

                case R.id.action_add_geofence:
                    startAddGeofenceActivity(device.getId());
                    return true;

                case R.id.action_list_event:
                    startListEventActivity(device.getId());
                    return true;

                case R.id.action_sms_configure:
                    startSmsConfigureActivity(device.getId());
                    return true;

                }
                return false;
            }
        });

        popup.show();
    }

    private void finishDevicesActivity(long deviceId, String deviceStatus) {
        Activity activity = getActivity();
        Intent deviceIntent = new Intent();
        deviceIntent.putExtra(EXTRA_DEVICE_ID, deviceId);
        deviceIntent.putExtra(EXTRA_DEVICE_STATUS, deviceStatus);

        //activity.setResult(MainFragment.RESULT_SUCCESS, new Intent().putExtra(EXTRA_DEVICE_ID, deviceId ));
        activity.setResult(MainFragment.RESULT_SUCCESS, deviceIntent);
        activity.finish();
    }

    private void startSendCommandActivity(long deviceId) {
        startActivity(new Intent(getContext(), SendCommandActivity.class).putExtra(EXTRA_DEVICE_ID, deviceId));
    }

    private void startGetRouteActivity(long deviceId) {
        startActivity(new Intent(getContext(), GetRouteActivity.class).putExtra(EXTRA_DEVICE_ID, deviceId));
    }

    private void startGetGeofenceActivity(long deviceId) {
        startActivity(new Intent(getContext(), GetGeofenceActivity.class).putExtra(EXTRA_DEVICE_ID, deviceId));
    }

    private void startAddGeofenceActivity(long deviceId) {
        startActivity(new Intent(getContext(), AddGeofenceActivity.class).putExtra(EXTRA_DEVICE_ID, deviceId));
    }

    private void startListEventActivity(long deviceId) {
        startActivity(new Intent(getContext(), listEventActivity.class).putExtra(EXTRA_DEVICE_ID, deviceId));
    }

    private void startSmsConfigureActivity(long deviceId) {
        startActivity(new Intent(getContext(), SmsConfigureActivity.class).putExtra(EXTRA_DEVICE_ID, deviceId));
    }

}