我是靠谱客的博主 善良煎蛋,最近开发中收集的这篇文章主要介绍java.lang.ClassCastException: android.view.ViewGroup$LayoutParams cannot be cast to android.widget.R,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
错误代码:
ImageView img1 = (ImageView) findViewById(R.id.icon);
img1.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT,
LayoutParams.MATCH_PARENT));
解决办法:
ImageView img1 = (ImageView) findViewById(R.id.icon);
img1.setLayoutParams(new RelativeLayout.LayoutParams(LayoutParams.MATCH_PARENT,
LayoutParams.MATCH_PARENT));
根据布局修改,比如布局为
RelativeLayout
则使用
new RelativeLayout.LayoutParams
最后
以上就是善良煎蛋为你收集整理的java.lang.ClassCastException: android.view.ViewGroup$LayoutParams cannot be cast to android.widget.R的全部内容,希望文章能够帮你解决java.lang.ClassCastException: android.view.ViewGroup$LayoutParams cannot be cast to android.widget.R所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复