Mein Ziel ist es, die aktuelle Ansicht von der aktuellen Position (Mitte) bis zum oberen Rand des übergeordneten Objekts zu animieren. Ist das möglich? Ich habe schon im nächsten Code versucht, aber das Problem ist, dass meine Ansicht nach Animation verschwindet:Android Animation zum obersten Elternteil anzeigen
Animation bottomUp = AnimationUtils.loadAnimation(context, R.anim.bottom_up);
popup.startAnimation(bottomUp);
und
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:fromYDelta="100%"
android:toYDelta="0%"
android:fillAfter="true"
android:duration="500"/>
</set>