Search in sources :

Example 1 with OnProximityListener

use of com.example.android.recipe071.ProximityManager.OnProximityListener in project AndroidSDK-RecipeBook by gabu.

the class Recipe071 method onCreate.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    mManager = new ProximityManager(this);
    mManager.setOnProximityListener(new OnProximityListener() {

        // 近接センサーの値が変わる度に呼び出されます。
        public void onSensorChanged(SensorEvent event) {
        }

        // 近接センサーに近づいたら呼び出されます。
        public void onNear(float value) {
            Toast.makeText(getApplicationContext(), "onNear!", Toast.LENGTH_SHORT).show();
        }

        // 近接センサーから遠ざかったら呼び出されます。
        public void onFar(float value) {
            Toast.makeText(getApplicationContext(), "onFar!", Toast.LENGTH_SHORT).show();
        }
    });
}
Also used : OnProximityListener(com.example.android.recipe071.ProximityManager.OnProximityListener) SensorEvent(android.hardware.SensorEvent)

Aggregations

SensorEvent (android.hardware.SensorEvent)1 OnProximityListener (com.example.android.recipe071.ProximityManager.OnProximityListener)1