2

StickyListHeadersListView で画像をスクロールしたい。私のコードのような

 <ImageView
    android:id="@+id/img_banner"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/rel_title_bg"
    android:background="@drawable/banner_img" />

<com.abc.StickyListHeadersListView
    xmlns:slh="http://schemas.android.com/apk/res-auto"
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_above="@+id/rel_footer"
    android:layout_below="@+id/rel_title_bg"
    android:clipToPadding="false"
    slh:areHeadersSticky="true" 
    />
4

1 に答える 1

0

ここに git_hub のライブラリがあります。Eclipse にプロジェクトとしてインポートし、プロジェクトにライブラリとして追加するだけです。

https://github.com/emilsjolander/StickyListHeaders

これは、外部ライブラリを使用するための良い知識になります。運がいい。

于 2013-06-03T07:13:46.733 に答える