zdd
zdd
icon size/color was not changed by theme above
It seems the author stop maintaining...
> 这题考察的是对象的键名的转换。 > > * 对象的键名只能是字符串和 Symbol 类型。 > * 其他类型的键名会被转换成字符串类型。 > * 对象转字符串默认会调用 toString 方法。 > > ```js > // example 1 > var a={}, b='123', c=123; > a[b]='b';...
Same with you, this only happened when you use your own theme, how to fix this?
> @zdd Below is the customized theme used in the code. > > ``` > > @color/colorPrimary > @color/colorPrimaryDark > > ``` thank you, it works
@yisizhu520 thanks
environment info ``` D:\git\ionic\zhuanshuchaxun>ionic info Ionic: ionic (Ionic CLI) : 4.0.1 (C:\Users\SuperDong\AppData\Roaming\npm\node_modules\ionic) Ionic Framework : ionic-angular 3.9.2 @ionic/app-scripts : 3.2.0 Cordova: cordova (Cordova CLI) : 7.0.0 Cordova Platforms : android...
It seems this lib is not work on Android, does anyone ever make this work on Android?
> @zdd > Try downgrading your cordova-android version from 6.4.0 to 6.3.0 and add the following lines to your build.gradle file. > > // SUB-PROJECT DEPENDENCIES END > compile "com.google.android.gms:play-services-analytics:+"...
找到原因了。 ``` private void dlInit(HttpURLConnection conn, int code) throws Exception { readResponseHeaders(conn); DLDBManager.getInstance(context).updateTaskInfo(info); if (!DLUtil.createFile(info.dirPath, info.fileName)) throw new DLException("Can not create file"); info.file = new File(info.dirPath, info.fileName); // 如果文件存在则不再下载,这里应该通知用户,现在是毫无反应,这导致无法重复下载同一个文件。 if...