这 4 行 java 代码在 android 应用程序中意味着什么?

What does this 4 line java code means in android application?(这 4 行 java 代码在 android 应用程序中意味着什么?)
本文介绍了这 4 行 java 代码在 android 应用程序中意味着什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的 java 应用程序中,我有这段代码

In my java application i have this code

@Override
public void onAttachedToWindow()
  {
  this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);
  super.onAttachedToWindow();
  }

当我为 android 2.3(级别 10) 构建它时,它可以编译并正常工作.但是当我为 android 4.0 (level 15) 构建它时,它会编译并让我在运行时崩溃并出现以下错误

when i build it for android 2.3 (level 10) it compiles and works fine. But when i build it for android 4.0 (level 15) it compiles and gives me crash at run time and following error

07-16 14:00:03.090: E/AndroidRuntime(29487): FATAL EXCEPTION: main
07-16 14:00:03.090: E/AndroidRuntime(29487): java.lang.IllegalArgumentException: Window type can not be changed after the window is added.

当我评论这一行并构建它时,它工作正常,没有问题..

when i comment this line and build it works fine and no issue..

//this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);

所以我不明白为什么会发生这种情况以及这段代码是什么意思?

so i am not getting why this happning and whats this code means?

一些参考在这里

当我在手机上运行应用程序时.版本是android 4.0.3

Android 上的幼儿安全应用

推荐答案

@Override
public void onAttachedToWindow()
  {
  this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);
  super.onAttachedToWindow();
  }

用于在android中禁用主页按钮

这个安全漏洞已在较新版本的 Android 中得到修复,因此它在 ICS 和果冻豆中不起作用...!!

this security flaw has been fixed in newer versions of Android so it will not work in ICS and jelly bean...!!

这篇关于这 4 行 java 代码在 android 应用程序中意味着什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How can create a producer using Spring Cloud Kafka Stream 3.1(如何使用Spring Cloud Kafka Stream 3.1创建制片人)
Insert a position in a linked list Java(在链接列表中插入位置Java)
Did I write this constructor properly?(我是否正确地编写了这个构造函数?)
Head value set to null but tail value still gets displayed(Head值设置为空,但仍显示Tail值)
printing nodes from a singly-linked list(打印单链接列表中的节点)
Control namespace prefixes in web services?(控制Web服务中的命名空间前缀?)