摘要:
解决办法 Window window =dialog.getWindow();// window.setGravity(Gravity.CENTER); WindowManager.LayoutParams layoutParams = window.getAttributes(); layoutP 阅读全文
摘要:
使用 ToolBox 下载地址https://www.jetbrains.com/toolbox-app/ 参考:https://blog.csdn.net/qq_29752857/article/details/107052986 阅读全文
摘要:
原因是在onCreate或其他方法中直接获取属性是无效的。 重载activity的onWindowFocusChanged方法,可在其中获取控件的宽和高 参考https://blog.51cto.com/u_15242344/2842086 阅读全文
摘要:
FAILURE: Build failed with an exception. * What went wrong:Unable to start the daemon process.This problem might be caused by incorrect configuration 阅读全文
摘要:
用jsonObject.isNull判断 参考https://www.cnblogs.com/guangchuantang/p/12326728.html 阅读全文
摘要:
gradlew -q app:dependencies找到冲突的库 比如:Program type already present: com.alibaba.sdk.android.beacon.Beacon$Error等等一个个排除有冲突的库我这是一共有4个库冲突 阅读全文
摘要:
先打出—— 然后删除一点 — 阅读全文
摘要:
通常是在根目录的build.gradle文件添加这行代码,发现编译通过了。其实上述方案只是忽略该问题,会给app带来意想不到的隐患。 可以查看下app/build/reports/lint-results-release-fatal.xml文件 比如我的是: 很清晰的指出了错误的地方在哪,更改完成后 阅读全文
摘要:
原因可能是设置了 <item name="android:windowIsTranslucent">true</item>这个属性 阅读全文
摘要:
Failed to resolve attribute at index 1 更改为: ?android:attr/actionBarSize 参考https://stackoverflow.com/questions/53772728/binary-xml-file-line-15-failed- 阅读全文