0

我正在尝试将flowtextview实现到bauerca / drag-sort-listview 中,但我收到了一个错误膨胀一行。你可以帮帮我吗?

错误行在 (ResourceDragSortCursorAdapter.java (Bauerca)):

@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
    return mInflater.inflate(mLayout, parent, false);
}

日食 说:

Ecipse 说“致命异常:主 android.view.InflateException:二进制 XML 文件第 8 行:膨胀类 com.pagesuite.flowtext.FlowTextView 时出错”

行布局为:

<?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="67dp"
      android:orientation="horizontal">

     <com.pagesuite.flowtext.FlowTextView
      android:id="@+id/nuevo_ingr_row_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<ImageView
      android:id="@id/drag_handle"
      android:layout_width="wrap_content"
      android:layout_height="67dp"
      android:layout_alignParentLeft="true"
      android:layout_alignParentTop="true"
      android:padding="10dip"
      android:background="@drawable/ic_move" />

<ImageView
      android:id="@id/click_remove"    
      android:layout_width="67dp"
      android:layout_height="67dp"
      android:layout_alignParentRight="true"
      android:layout_marginTop="400dip"
      android:padding="10dip"
      android:background="@drawable/ic_close" />
 </com.pagesuite.flowtext.FlowTextView>
 </LinearLayout>
4

3 回答 3

1

它可能无法找到您的 com.pagesuite.flowtext.FlowTextView 类。

首先检查这个类是否真的在那个包里?您是否使用了库或将此类复制到您自己的项目中?如果您复制了它,您需要将包更改为正确的值,也就是将其指向您自己的类。

于 2012-12-30T14:40:12.700 回答
0

我写了 FlowTextView 类。该项目已经修复了很多错误,并且 JAR 文件尚未更新,因此我建议不要使用 JAR 文件并检查整个源代码并将其用作库项目。

这意味着您获得了最新版本,它可能会同时解决您的导入问题。

如果您不熟悉 eclipse 中的库项目,请检查此

于 2013-01-31T20:21:09.603 回答
0

您收到该错误只是因为您的 xml 布局文件无法识别该包com.pagesuite.flowtext.FlowTextView

如果将其更改为正确的,则不会出现错误。

随意发表评论。

于 2012-12-31T04:07:48.610 回答