我有一个带有LinearLayout的RecyclerView。 LinearLayout由9个按钮组成。在进行一些更改之前,我可以单击按钮并且它没有崩溃。但是在我添加下面的代码后,它会给出错误并且不会显示它来自何处:
java.lang.ClassCastException:android.widget.LinearLayout $ LayoutParams 无法转换为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上,它不会崩溃,并且所有工作都按预期工作。 你知道这个问题吗?你还需要更多代码吗?
答案 0 :(得分:1)
如果您需要kotlin版本:
with(view.layoutParams){
width = ViewGroup.LayoutParams.WRAP_CONTENT
height = ViewGroup.LayoutParams.MATCH_PARENT
}
答案 1 :(得分:0)
您的问题出在onBindViewHolder
:
LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
为(几乎)所有布局实现了 LayoutParams
。
在视图上设置LayoutParams
时,需要使用视图父类的类型进行设置。因此,如果您有LinearLayout
,并且您尝试添加按钮,则需要在LinearLayout.LayoutParams
上设置Button
。在这种情况下的问题是你不知道父类型。我的意思是它可以在不同的Android版本上有所不同。
安全的赌注是使用公共类(LayoutParams
?)中的ViewGroup
,因为您只设置了宽度和高度。
答案 2 :(得分:0)
我遇到了同样的问题,您可以使用此
ini_set('session.gc_maxlifetime', 28800); // 8 * 60 * 60