私はギャラリーウィジェットを使用しています。ギャラリーの要素にフェードインするレイアウト アニメーションを添付しました。それはうまくいきます。
しかし、ギャラリーのコンテンツを変更し、notifyDataSetChanged(); でアダプターを更新すると、新しい要素が表示されますが、それらのレイアウト アニメーションはありません。
その効果をどのように実装しますか?ギャラリーのコンテンツを頻繁に更新するので、毎回その効果が必要です。
コードは次のとおりです。
<com.rtrk.gui.mainmenu.gallery.A4TVGallery
android:id="@+id/mainMenuGallery"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:layoutAnimation="@anim/a4tv_gallery_controller"
android:persistentDrawingCache="animation" />
// Notify new data
mainMenuAdapter.notifyDataSetChanged();
// Set default selection
mainMenuGallery.setSelection(defaultSelectedIndex);
TNX!