以XML格式查看AppWidgetProvider

时间:2012-11-30 03:46:53

标签: android xml layout

我有一个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中。

感谢。

1 个答案:

答案 0 :(得分:2)

使用此

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