带有羊皮纸库错误的水平 ListView

Horizontal ListView with parchment library error

我只是想使用 parchment 库来添加水平列表视图,但它对我不起作用。

我按照所有说明将 parchment 添加为 Eclipse 中的 Android 库,这一步没问题。问题是,当我尝试在 xml 文件中添加水平 listView 时,Eclipse 显示错误:“错误:不允许字符串类型(在 'orientation' 处,值为 'horizontal ')"

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <View
            android:layout_width="wrap_content"
            android:layout_height="60dp"
            android:background="#ff5a5bff"/>


        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="List App"
            android:textColor="#fff"
            android:textSize="25sp"
            android:gravity="center_vertical"
            android:layout_centerInParent="true"/>
    </RelativeLayout>

    <mobi.parchment.widget.adapterview.listview.ListView 
            xmlns:parchment="http://schemas.android.com/apk/res/res-auto"
            android:id="@+id/list"
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:clipToPadding="true"
            android:drawSelectorOnTop="false"
            parchment:orientation="horizontal"
            parchment:snapPosition="start"/>

</LinearLayout>

你能帮忙吗

非常感谢

在文档 xmlns 中是: xmlns:parchment="http://schemas.android.com/apk/res/<YOUR PACKAGE NAME>" 在您的代码中是: xmlns:parchment="http://schemas.android.com/apk/res/res-auto" 请检查这个

将以下内容添加到您的根标签中, xmlns:parchment="http://schemas.android.com/apk/res-auto

您的 LinearLayout.TextView 60 dp 居中(竖排文本)也可能会被简化

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:parchment="http://schemas.android.com/apk/res-auto">


        <TextView
            android:layout_width="wrap_content"
            android:layout_height="60dp"
            android:text="List App"
            android:background="#ff5a5bff"
            android:textColor="#fff"
            android:textSize="25sp"
            android:gravity="center_vertical" />