Android 调试之 常见报错

来源:互联网 发布:淘宝店转让 编辑:程序博客网 时间:2024/05/18 17:56

Android 调试之 常见报错

1. java.lang.ClassCastException: android.view.ViewGroup$LayoutParams cannot be cast to       android.widget.LinearLayout$LayoutParams

错误示例
ImageView image =(ImageView) findViewById(R.id.imageView1);
image.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));



解决方法:
ImageView image =(ImageView) findViewById(R.id.imageView1);

image.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));


0 0
原创粉丝点击