重写OrientationEventListener时不返回

时间:2012-10-27 13:22:52

标签: android listener sensormanager

这是有问题的代码:

    m_myOrientationEventListener
    = new OrientationEventListener(getApplicationContext(),SensorManager.SENSOR_DELAY_NORMAL){
        @Override
         public void onOrientationChanged(int arg0) {
             // TODO Auto-generated method stub
             Toast.makeText(getApplicationContext(), "Orientation changed !", Toast.LENGTH_SHORT).show();
         }
    };

在添加此代码之前一切正常,添加后,我在模拟器上看到“空白”布局

正如我从调试中看到的那样,函数(OrientationEventListener)被调用了两次......

有什么想法吗?

由于

0 个答案:

没有答案