Notify VrListenerService when VR activity changes.

Bug: 27536964
Bug: 22855417

Change-Id: I67e1f8e6595332b3d768a99735bbd5fd38dffdc9
This commit is contained in:
Ruben Brunk
2016-03-07 23:37:12 -08:00
parent 4f29d45ad4
commit c7354fe2d4
9 changed files with 151 additions and 37 deletions

View File

@@ -16,7 +16,9 @@
package android.service.vr;
import android.content.ComponentName;
/** @hide */
oneway interface IVrListener {
}
void focusedActivityChanged(in ComponentName component);
}

View File

@@ -23,7 +23,10 @@ import android.app.Service;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.os.Handler;
import android.os.IBinder;
import android.os.Looper;
import android.os.Message;
/**
* A service that is bound from the system while running in virtual reality (VR) mode.
@@ -55,19 +58,53 @@ public abstract class VrListenerService extends Service {
@SdkConstant(SdkConstant.SdkConstantType.SERVICE_ACTION)
public static final String SERVICE_INTERFACE = "android.service.vr.VrListenerService";
/**
* @hide
*/
public static class VrListenerBinder extends IVrListener.Stub {
}
private final Handler mHandler;
private final VrListenerBinder mBinder = new VrListenerBinder();
private static final int MSG_ON_CURRENT_VR_ACTIVITY_CHANGED = 1;
private final IVrListener.Stub mBinder = new IVrListener.Stub() {
@Override
public void focusedActivityChanged(ComponentName component) {
mHandler.obtainMessage(MSG_ON_CURRENT_VR_ACTIVITY_CHANGED, component).sendToTarget();
}
};
private final class VrListenerHandler extends Handler {
public VrListenerHandler(Looper looper) {
super(looper);
}
@Override
public void handleMessage(Message msg) {
switch (msg.what) {
case MSG_ON_CURRENT_VR_ACTIVITY_CHANGED: {
VrListenerService.this.onCurrentVrActivityChanged((ComponentName) msg.obj);
} break;
}
}
}
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
public VrListenerService() {
mHandler = new VrListenerHandler(Looper.getMainLooper());
}
/**
* Called when the current activity using VR mode is changed.
* <p/>
* This will be called immediately when this service is initially bound, but is
* not guaranteed to be called before onUnbind.
*
* @param component the {@link ComponentName} of the new current VR activity.
*/
public void onCurrentVrActivityChanged(ComponentName component) {
// Override to implement
}
/**
* Check if the given package is available to be enabled/disabled in VR mode settings.
*