0

我有一个 XML 文件布局,我想在其中添加一条水平线。为此,我添加了以下内容:

<View
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="@android:color/black" />

不幸的是,这个布局被 AppWidgetProvider 使用,我的 apk 崩溃了以下错误:

W/AppWidgetHostView(  517): updateAppWidget couldn't find any view, using error view
W/AppWidgetHostView(  517): android.view.InflateException: Binary XML file line #25: Error inflating class android.view.View

从那里我不知道如何解决它。我想让我的线路出现并出现在我的 XML 中。

谢谢。

4

1 回答 1

2

用这个

  <TextView
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="@android:color/black" />
于 2012-11-30T04:58:53.527 回答