次のレイアウト スニペットがあります。
<LinearLayout
android:id="@+id/tagContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:animateLayoutChanges="true" >
</LinearLayout>
<TextView
android:id="@+id/commentLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tagContainer" />
ご覧のとおり、animateLayoutChanges
は に設定さtrue
れているLinearLayout
ため、アイテムが追加されると、その追加がアニメーション化されます。これは問題ありませんが、削除に問題があります。アイテムを削除すると、アニメーションは引き続き正常に再生されますが、TextView
以下がすぐにポップアップし、アニメーションが終了するのを待ちません。どうすればこれを達成できますか、またはさらに良いことに、アニメーションをアニメーションTextView
と同期させることができLinearLayout
ますか?