作者:lanxians | 来源:互联网 | 2023-10-10 15:30
Usealayout_heightof0dipinsteadof700dpforbetterperformance错误原因:ATD18添加了LintWarnings
Use a layout_height of 0dip instead of 700dp for better performance
错误原因:ATD18添加了Lint Warnings插件用来检测xml布局文件中不当的地方。
如上案例,是纵向布局有了layout_heigth来表示实际高度,但是又用了 android:layout_weight="3" 来表示等比高度,
解决方案:第一种:如果确定了实际高度就去掉 android:layout_weight="3" ;
第二种:如果不确定实际高度,使用父容器的等比,可以把android:layout_height="0dp"的值设置为0dp就可以了!