无法使用实用程序类

时间:2014-05-20 08:47:30

标签: java android class utility

尝试从活动外部使用 calcularRuta 方法时遇到问题。该方法根据其输入返回值。我无法获得任何结果,因为我尝试调试它并且它甚至都没有输入方法,所以当我必须在下一行使用变量 ruta 时它会#39 ; s null。

public boolean onTouch(View v, MotionEvent event) {

            try {
                String qr = DecodeQR.zxing(mRgba);

                int origen = Integer.valueOf(qr);
                int destino = Integer.valueOf(bundle.getString("DESTINO"));
                boolean ascensor = bundle.getBoolean("ASCENSOR");

                if (ruta == null)
                    ruta = IniciarBusqueda.calcularRuta(origen, destino, ascensor);

                updateScreen(qr, ruta.toString());

            } catch (ChecksumException e) {
                e.printStackTrace();
            } catch (FormatException e) {
                e.printStackTrace();
            }
            return false;
        }

我试图弄清问题是什么,但我不能......有什么想法吗?

感谢。

编辑:将实用程序方法更改为静态。

1 个答案:

答案 0 :(得分:0)

1)你不应该实例化一项活动。

2)制作该方法public static,以便您可以使用Classname.methodName访问它。无需实例化该类。