AtscInput: Add a dummy implementation of abstract onSetCaptionEnabled()

Change-Id: I9e65cb2a2f6da8ce4ed32c9c2ffb2c6523425f4b
This commit is contained in:
Jae Seo
2014-07-12 20:38:17 -07:00
parent dcabc1acae
commit ca1c55b353

View File

@@ -133,6 +133,11 @@ public class AtscTvInputService extends TvInputService {
mPlayer.start();
return true;
}
@Override
public void onSetCaptionEnabled(boolean enabled) {
Log.d(TAG, "onSetCaptionEnabled(" + enabled + ")");
}
}
private class ProgramUpdateTask extends AsyncTask<Object, Void, Void> {