- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我可以在基于 WebView 的应用启动时看到一些奇怪的东西。它根本不会影响应用程序,但我很好奇为什么会出现错误。没有崩溃,一切似乎都正常,但是错误...
这里是logcat
Loading com.google.android.webview version 42.0.2311.137 (code 2311137)
I/LibraryLoader﹕ Time to load native libraries: 2 ms (timestamps 3347-3349)
I/LibraryLoader﹕ Expected native library version number "",actual native library version number ""
V/WebViewChromiumFactoryProvider﹕ Binding Chromium to main looper Looper (main, tid 1) {2d3b4b2c}
I/LibraryLoader﹕ Expected native library version number "",actual native library version number ""
I/chromium﹕ [INFO:library_loader_hooks.cc(112)] Chromium logging enabled: level = 0, default verbosity = 0
I/BrowserStartupController﹕ Initializing chromium process, singleProcess=true
W/art﹕ Attempt to remove local handle scope entry from IRT, ignoring
E/SysUtils﹕ ApplicationContext is null in ApplicationStatus
W/chromium﹕ [WARNING:resource_bundle.cc(286)] locale_file_path.empty()
I/chromium﹕ [INFO:aw_browser_main_parts.cc(63)] Load from apk succesful, fd=34 off=6850672 len=3697
I/chromium﹕ [INFO:aw_browser_main_parts.cc(76)] Loading webviewchromium.pak from, fd:35 off:7953036 len:1161174
I/Adreno-EGL﹕ <qeglDrvAPI_eglInitialize:379>: QUALCOMM Build: 01/15/15, ab0075f, Id3510ff6dc
W/AudioManagerAndroid﹕ Requires BLUETOOTH permission
W/chromium﹕ [WARNING:data_reduction_proxy_config.cc(150)] SPDY proxy OFF at startup
W/art﹕ Attempt to remove local handle scope entry from IRT, ignoring
W/AwContents﹕ onDetachedFromWindow called when already detached. Ignoring
I/GAv4﹕ Google Analytics 4.5.0/7327 is starting up. To enable debug logging on a device run:
adb shell setprop log.tag.GAv4 DEBUG
adb logcat -s GAv4
几行WebView初始化
...
// load url in webView
webView.loadUrl(webViewUrl);
webView.setWebViewClient(new MyAppWebViewClient());
// implement WebChromeClient inner class
// we will define openFileChooser for select file from camera
webView.setWebChromeClient(new WebChromeClient() {
...
发生了什么事?
最佳答案
这里发生的事情是:
ApplicationStatus 尚未初始化,因此无法从中获取上下文。这是完全自然的情况,因此不应引发错误。将此记录为错误是编码员的夸大其词。
但是:
这不会导致任何实际问题,因为该函数尝试获取上下文对象只是为了执行另一项检查以评估设备的性能能力。由于它有时无法调用“isLowRamDevice()”,它只会继续执行其余的检查。所以最坏的情况是此时无法检测到低端手机,后续会进行检查。
这也是完全正常的“我在 Lollipop 设备 (Nexus 10) 中看到此错误,但在 JellyBean 设备中没有”
,因为如果检测到低于 KitKat 的任何内容,该函数会提前返回。 (//任何前 KitKat 设备都不能被视为“低端”
)
关于java - SysUtils:ApplicationContext 在 ApplicationStatus (WebView) 中为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30013125/
在Delphi XE3中,似乎可以使用“System.SysUtils”或“SysUtils”,“Vcl.FileCtrl”或“FileCtrl”。 我读过http://docs.embarcader
我需要找到 DecimalSeparator var SysUtils Delphi 7,在 Delphi XE6 中我试图在 System.SysUtils 中找到,但没有成功。有人可以告诉我在De
我有时会在 LogCat 中收到此错误: E/SysUtils:ApplicationStatus中的ApplicationContext为null 有人知道 ApplicationStatus 类吗
我正在根据Spring4d的文档示例制作一个eventPublisher 不同之处在于订阅者必须显式订阅事件。 我想根据他们是否触发他们的处理程序实现IEventHandler界面。 当发布传入事件时
从 Delphi XE 迁移到 XE5。 Label1.Caption:= 'Today''s day is '+LongDayNames[DayOfWeek(Date)]; “LongDayName
我正在尝试使用 SysUtils.WrapText()使用包含转义单引号字符的字符串运行函数,我得到了意外的结果。 var Lines : TStrings; begin Lines := T
有人为 Delphi 编写过“UnFormat”例程吗? 我想象的是SysUtils.Format的逆,看起来像这样 UnFormat('一个数字 %n 和另一个 %n',[float1, float
[dcc32 Hint] H2443 Inline function 'RenameFile' has not been expanded because unit 'Winapi.Windows'
我正在编写一个线程密集型应用程序,它在退出时挂起。 我已经追踪到系统单元,找到了程序进入无限循环的地方。它在 SysUtils 第 19868 行 -> DoneMonitorSupport -> C
我可以在基于 WebView 的应用启动时看到一些奇怪的东西。它根本不会影响应用程序,但我很好奇为什么会出现错误。没有崩溃,一切似乎都正常,但是错误... 这里是logcat Loading com.
我在应用程序关闭时出现随机运行时错误 216。 我已尽我所能进行调试,并且错误在 SysUtils.FinalizeUnits 中抛出。 我已经检查了代码并确保释放所有创建的对象。 运行时错误的编号
几天以来,发生了一些奇怪的事情。 问题: I always get "Compile Error: F2051 Unit System.SysUtils was compiled with a dif
我是一名优秀的程序员,十分优秀!