加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

java.lang.ClassCastException:android.widget.LinearLayout $L

发布时间:2020-12-15 02:08:44 所属栏目:Java 来源:网络整理
导读:我有一个带有LinearLayout的RecyclerView. LinearLayout由9个按钮组成.在进行一些更改之前,我可以单击按钮并且它没有崩溃.但是在我添加下面的代码后,它会给出错误并且不会显示它来自何处: java.lang.ClassCastException: android.widget.LinearLayout$Layou
我有一个带有LinearLayout的RecyclerView. LinearLayout由9个按钮组成.在进行一些更改之前,我可以单击按钮并且它没有崩溃.但是在我添加下面的代码后,它会给出错误并且不会显示它来自何处:

java.lang.ClassCastException: android.widget.LinearLayout$LayoutParams
cannot be cast to android.support.v7.widget.RecyclerView$LayoutParams

适配器中的导入:

import android.content.Context;
import android.graphics.Color;
import android.support.v7.widget.RecyclerView;
import android.widget.LinearLayout.LayoutParams;
import android.util.TypedValue;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.TextView;

在onClickListener中添加了这个:

tempTag = (int) v.getTag();
mAdapter.grayButton(tempTag / 9,tempTag % 9);
zahl1 = Integer.parseInt(mAdapter.getText(tempTag).toString());

在RecyclerView.Adapter中添加了此方法:

public void grayButton(int row,int element){
    recycleViewDatas.get(row).setGray(element);
    notifyItemChanged(row);
}

在onBindViewHolder中添加了以下代码:

LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT);
viewHolder.ll.setLayoutParams(lp);
lp.height = viewHolder.ll.getLayoutParams().height - (int) (viewHolder.buttons.get(j).getLayoutParams().height - recycleViewDatas.get(i).getSize()) + 30;
viewHolder.ll.setLayoutParams(lp);
if(recycleViewDatas.get(i).getGray() == j)
     viewHolder.buttons.get(j).setTextColor(Color.GRAY);
else if(recycleViewDatas.get(i).getGray() == -1)
     viewHolder.buttons.get(j).setTextColor(Color.BLACK);

这是我的ViewHolder:

public static class ViewHolder extends RecyclerView.ViewHolder {
    LinearLayout ll;
    private ArrayList<Button> buttons = new ArrayList<>();

    public ViewHolder(View v,Context context) {
        super(v);

        ll = (LinearLayout) v.findViewById(R.id.llRecycleView);
        for (int i = 0; i < ll.getChildCount(); i++) {
            buttons.add((Button) ll.getChildAt(i));
        }
    }
}

recycleviewdata的布局文件:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="9"
android:background="@drawable/zeile"
android:id="@+id/llRecycleView">

<Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:textColor="@android:color/black"
    android:background="@android:color/transparent"
    android:textSize="23sp"
    android:clickable="false"
    android:layout_gravity="center"
    android:gravity="center" />

…更多按钮

MainActivity的布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="2"
    android:background="@drawable/top">
...some buttons
</LinearLayout>

<android.support.v7.widget.RecyclerView
    android:id="@+id/my_recycler_view"
    android:scrollbars="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/></LinearLayout>

我不明白为什么更新后出现错误.该应用程序只在我的M9上崩溃.在HTC One V上,它不会崩溃,并且所有工作都按预期工作.
你知道这个问题吗?你还需要更多代码吗?

解决方法

您的问题出在onBindViewHolder上:

LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT);

LayoutParams是为(几乎)所有布局实现的.
在视图上设置LayoutParams时,需要使用视图的父类型设置它.因此,如果您有一个LinearLayout并且您尝试添加一个Button,则需要在Button上设置LinearLayout.LayoutParams.这种情况下的问题是您不知道父类型.我认为它可以在不同的Android版本上有所不同.

安全的赌注是使用公共类(ViewGroup?)中的LayoutParams,因为您只设置宽度和高度.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读