ArrayAdapter错误:Caused by: java.l

2019-01-21  本文已影响5人  koinzhang

在仔细查找错误之后,发现是因为自己的item布局,没有把textview作为根节点
原代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/result_item"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:textColor="@color/black"
        android:layout_margin="20dp"
        android:text="default"/>

</LinearLayout>

将代码改为下面这种之后,可以正常运行

<?xml version="1.0" encoding="utf-8"?>
<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/result_item"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="18sp"
    android:textColor="@color/black"
    android:layout_margin="20dp"
    android:text="default"/>
上一篇下一篇

猜你喜欢

热点阅读