Eclipse の Android プロジェクトで問題が発生しています。
2 つの XML レイアウト ファイルがあり、どちらにも ListViews が含まれています。
ListViews は Android フォンで完全に機能していますが、Eclipse でデザイン ウィンドウが開かず、次のエラーが表示されます。
com.android.layoutlib.bridge.impl.binding.FakeAdapter cannot be cast to android.widget.BaseAdapter
どちらのファイルにも次のコードが含まれています。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/cardList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fadeScrollbars="true"
android:fastScrollAlwaysVisible="true"
android:fastScrollEnabled="true"
android:scrollbarSize="30dp"
android:scrollbarStyle="insideOverlay" >
</ListView>
</LinearLayout>
助言がありますか?