1

私はこのエラーを受け取りました:

Exception raised during rendering: com.android.layoutlib.bridge.MockView cannot be cast to android.view.ViewGroup
Exception details are logged in Window > Show View > Error Log
The following classes could not be found:
- android.support.v4.widget.SwipeRefreshLayout (Fix Build Path, Edit XML, Create Class)

私のXMLコード:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ListView android:id="@+id/news_list"
          android:layout_width="match_parent"
          android:layout_height="match_parent" />

</android.support.v4.widget.SwipeRefreshLayout>

すでにEclipseを再起動しましたが、エラーは解決しません。

4

1 に答える 1

0

SwipeRefreshLayout をサポート ライブラリからパッケージにコピーして、このエラーを解決しました。

于 2014-10-01T22:05:55.180 に答える