Android Open Source - diagnostic-tool Grid Manager






From Project

Back to project page diagnostic-tool.

License

The source code is released under:

Copyright (c) 2014 Ford Motor Company All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are me...

If you think the Android project diagnostic-tool listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.openxc.openxcdiagnostic.menu;
/*from   w w w  . j  a  v  a2  s .  c  om*/
import android.graphics.drawable.Drawable;
import android.util.SparseArray;

import com.openxc.measurements.BrakePedalStatus;
import com.openxc.measurements.FuelConsumed;
import com.openxc.measurements.HeadlampStatus;
import com.openxc.measurements.IgnitionStatus;
import com.openxc.measurements.Longitude;
import com.openxc.measurements.Measurement;
import com.openxc.measurements.Odometer;
import com.openxc.measurements.ParkingBrakeStatus;
import com.openxc.measurements.SteeringWheelAngle;
import com.openxc.measurements.TorqueAtTransmission;
import com.openxc.measurements.TransmissionGearPosition;
import com.openxc.measurements.VehicleSpeed;
import com.openxc.measurements.WindshieldWiperStatus;
import com.openxc.openxcdiagnostic.R;

public class GridManager {

    public static final int MenuBackgroundImgID = R.drawable.graybackground;

    private static final SparseArray<Class<? extends Measurement>> VehicleClassImgDict;
    static {
        VehicleClassImgDict = new SparseArray<Class<? extends Measurement>>();
        VehicleClassImgDict.append(R.drawable.steering_wheel, SteeringWheelAngle.class);
        VehicleClassImgDict.append(R.drawable.speedrpm, VehicleSpeed.class);
        VehicleClassImgDict.append(R.drawable.gaspump, FuelConsumed.class);
        VehicleClassImgDict.append(R.drawable.odometer, Odometer.class);
        VehicleClassImgDict.append(R.drawable.windshield_wiper, WindshieldWiperStatus.class);
        VehicleClassImgDict.append(R.drawable.pedals, BrakePedalStatus.class);
        VehicleClassImgDict.append(R.drawable.parkingbrake, ParkingBrakeStatus.class);
        VehicleClassImgDict.append(R.drawable.headlamp, HeadlampStatus.class);
        VehicleClassImgDict.append(R.drawable.transmission_torque, TorqueAtTransmission.class);
        VehicleClassImgDict.append(R.drawable.transmission_gear, TransmissionGearPosition.class);
        VehicleClassImgDict.append(R.drawable.key, IgnitionStatus.class);
        VehicleClassImgDict.append(R.drawable.location, Longitude.class);
    }

    public static final Integer[] MenuThumbIDs = { R.drawable.steering_wheel,
            R.drawable.speedrpm, R.drawable.gaspump, R.drawable.odometer,
            R.drawable.windshield_wiper, R.drawable.pedals,
            R.drawable.parkingbrake, R.drawable.headlamp,
            R.drawable.transmission_torque, R.drawable.transmission_gear,
            R.drawable.key, R.drawable.location };

    public static Class<? extends Measurement> getClass(Integer position) {
        return VehicleClassImgDict.get(MenuThumbIDs[position]);
    }

    public static final int MenuButtonUnpressedImgID = R.drawable.graybuttonunpressedbackground;
    public static final int MenuButtonPressedImgID = R.drawable.graybuttonpressedbackground;

    public static final boolean drawablesAreEqual(Drawable d1, Drawable d2) {
        return d1.getConstantState().equals(d2.getConstantState());
    }

}




Java Source Code List

com.openxc.openxcdiagnostic.dash.DashboardActivity.java
com.openxc.openxcdiagnostic.dash.package-info.java
com.openxc.openxcdiagnostic.diagnostic.ButtonManager.java
com.openxc.openxcdiagnostic.diagnostic.DiagnosticActivity.java
com.openxc.openxcdiagnostic.diagnostic.DiagnosticManager.java
com.openxc.openxcdiagnostic.diagnostic.FavoritesAlertManager.java
com.openxc.openxcdiagnostic.diagnostic.FavoritesManager.java
com.openxc.openxcdiagnostic.diagnostic.InputManager.java
com.openxc.openxcdiagnostic.diagnostic.ResponseDetailsAlertManager.java
com.openxc.openxcdiagnostic.diagnostic.SettingsManager.java
com.openxc.openxcdiagnostic.diagnostic.command.ButtonCommand.java
com.openxc.openxcdiagnostic.diagnostic.command.ClearInputFieldsCommand.java
com.openxc.openxcdiagnostic.diagnostic.command.LaunchFavoritesDialogCommand.java
com.openxc.openxcdiagnostic.diagnostic.command.LaunchSettingsDialogCommand.java
com.openxc.openxcdiagnostic.diagnostic.command.RequestSendCommand.java
com.openxc.openxcdiagnostic.diagnostic.command.package-info.java
com.openxc.openxcdiagnostic.diagnostic.output.OutputRow.java
com.openxc.openxcdiagnostic.diagnostic.output.OutputTableManager.java
com.openxc.openxcdiagnostic.diagnostic.output.TableAdapter.java
com.openxc.openxcdiagnostic.diagnostic.output.TableSaver.java
com.openxc.openxcdiagnostic.diagnostic.output.package-info.java
com.openxc.openxcdiagnostic.diagnostic.pair.CommandPair.java
com.openxc.openxcdiagnostic.diagnostic.pair.DiagnosticPair.java
com.openxc.openxcdiagnostic.diagnostic.pair.Pair.java
com.openxc.openxcdiagnostic.diagnostic.pair.package-info.java
com.openxc.openxcdiagnostic.diagnostic.package-info.java
com.openxc.openxcdiagnostic.dump.DumpActivity.java
com.openxc.openxcdiagnostic.dump.SettingsManager.java
com.openxc.openxcdiagnostic.dump.package-info.java
com.openxc.openxcdiagnostic.menu.GraphDataRetrieveTask.java
com.openxc.openxcdiagnostic.menu.GrapherActivity.java
com.openxc.openxcdiagnostic.menu.GridImageAdapter.java
com.openxc.openxcdiagnostic.menu.GridManager.java
com.openxc.openxcdiagnostic.menu.MenuActivity.java
com.openxc.openxcdiagnostic.menu.package-info.java
com.openxc.openxcdiagnostic.util.ActivityLauncher.java
com.openxc.openxcdiagnostic.util.DialogLauncher.java
com.openxc.openxcdiagnostic.util.Formatter.java
com.openxc.openxcdiagnostic.util.MessageAnalyzer.java
com.openxc.openxcdiagnostic.util.RecurringResponseGenerator.java
com.openxc.openxcdiagnostic.util.ResponseEmulator.java
com.openxc.openxcdiagnostic.util.Toaster.java
com.openxc.openxcdiagnostic.util.Utilities.java
com.openxc.openxcdiagnostic.util.package-info.java