我想阻止用户在智能电视上安装应用。我在我的主要活动中实现了这个代码,但似乎没有阻止它。
if (checkIsTelevision()) {
new AlertDialog.Builder(this)
.setTitle("Not supported")
.setMessage("This app is not compatible with TV devices")
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
MainActivity.this.finish();
}
})
.setCancelable(false)
.show();
return;
}
答案 0 :(得分:0)
有两种解决方案,