Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/ssh/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Appcelerator:将WebView远程连接到Chrome_Appcelerator_Appcelerator Titanium_Appcelerator Mobile_Appcelerator Alloy_Appcelerator Studio - Fatal编程技术网

Appcelerator:将WebView远程连接到Chrome

Appcelerator:将WebView远程连接到Chrome,appcelerator,appcelerator-titanium,appcelerator-mobile,appcelerator-alloy,appcelerator-studio,Appcelerator,Appcelerator Titanium,Appcelerator Mobile,Appcelerator Alloy,Appcelerator Studio,不久前,我能够在Chrome中远程调试webview以调试html错误。但现在,它在我的Android手机上不再工作了,我无法连接(在Chrome中:更多工具>开发者工具>远程设备…我的远程设备显示“已连接”) 我在tiapp.xml中添加的行(组成不同): false true 解决了这个问题。 在tiapp.xml中,这两个元素的顺序如下: <application android:theme="@style/Theme.AppCompat.NoTitleBar"/> <

不久前,我能够在Chrome中远程调试webview以调试html错误。但现在,它在我的Android手机上不再工作了,我无法连接(在Chrome中:更多工具>开发者工具>远程设备…我的远程设备显示“已连接”)

我在tiapp.xml中添加的行(组成不同):

false

true

解决了这个问题。 在tiapp.xml中,这两个元素的顺序如下:

<application android:theme="@style/Theme.AppCompat.NoTitleBar"/>
<application android:debuggable="true"/>

…而不是:

<application android:debuggable="true"/>
<application android:theme="@style/Theme.AppCompat.NoTitleBar"/>

…在我看来像个虫子