当前位置: 首页 > 知识库问答 >
问题:

二进制XML文件第25行:inflating类TextView时出错

胥博文
2023-03-14

这是现场的第一个问题。

测试所有解决方案本站但不工作!

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    >

    <ImageView
        android:id="@+id/image_cloth"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:src="@drawable/clothes1"
        android:adjustViewBounds="true"
        android:scaleType="centerCrop"
        />

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="@dimen/margin_X2"
        android:layout_alignBottom="@id/image_cloth"
        >

        <TextView
            android:id="@+id/name_cloth"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            tools:text="test text"
            android:textSize="@dimen/largX2_font"
            android:layout_marginBottom="@dimen/standard_margin"
            android:textColor="#000"
            android:layout_alignParentRight="true"/>

        <TextView
            android:id="@+id/view_count_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            tools:text="700"
            android:layout_alignParentRight="true"
            android:layout_below="@id/name_cloth"
            android:textColor="#000"
            android:textSize="@dimen/larg_font"/>

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_view_count"
            android:layout_alignTop="@id/view_count_text"
            android:layout_alignBottom="@id/view_count_text"
            android:layout_toLeftOf="@id/view_count_text"
            android:scaleType="centerCrop"
            />

    </RelativeLayout>

</RelativeLayout>
public ClothsViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View view = LayoutInflater.from(context).inflate(R.layout.item_cloths, parent, false);
        return new ClothsViewHolder(view);
    }

目标SDK版本:26

共有1个答案

司健柏
2023-03-14

尝试将属性textColor从android:textColor=“#000”更改为android:textColor=“@color/yourcolor”

 类似资料: