本文整理汇总了Java中com.google.vrtoolkit.cardboard.sensors.NfcSensor类的典型用法代码示例。如果您正苦于以下问题:Java NfcSensor类的具体用法?Java NfcSensor怎么用?Java NfcSensor使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
NfcSensor类属于com.google.vrtoolkit.cardboard.sensors包,在下文中一共展示了NfcSensor类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onCreate
import com.google.vrtoolkit.cardboard.sensors.NfcSensor; //导入依赖的package包/类
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(1);
getWindow().addFlags(128);
this.mMagnetSensor = new MagnetSensor(this);
this.mMagnetSensor.setOnCardboardTriggerListener(this);
this.mNfcSensor = NfcSensor.getInstance(this);
this.mNfcSensor.addOnCardboardNfcListener(this);
onNfcIntent(getIntent());
setVolumeKeysMode(2);
if (Build.VERSION.SDK_INT < 19) {
final Handler handler = new Handler();
getWindow().getDecorView().setOnSystemUiVisibilityChangeListener(
new View.OnSystemUiVisibilityChangeListener() {
public void onSystemUiVisibilityChange(int visibility) {
if ((visibility & 0x2) == 0) {
handler.postDelayed(new Runnable() {
public void run() {
CardboardActivity.this
.setFullscreenMode();
}
}, 2000L);
}
}
});
}
}