「カスタム」メディア コントローラーの単純なフェードアウト アニメーションを実行しようとしています。
私が抱えている問題は、レイアウトがフェードアウトせず、1 秒後に消えることです (1 秒の遅延で Visibility を GONE に設定したかのように)。
これは私の機能です:
private void fadeOut(final View view) {
final AlphaAnimation fadeOutAnimation = new AlphaAnimation(1.0F, 0.0F);
fadeOutAnimation.setDuration(1000);
fadeOutAnimation.setAnimationListener(new AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
}
@Override
public void onAnimationRepeat(Animation animation) {
}
@Override
public void onAnimationEnd(Animation animation) {
view.setVisibility(View.GONE);
}
});
view.startAnimation(fadeOutAnimation);
}
そして、私が隠そうとしているレイアウト:
<RelativeLayout
android:id="@+id/videoControllerContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="0dp"
android:alpha="50"
android:background="@color/DarkGrey" >
<ImageButton
android:id="@+id/playVideoButton"
android:layout_width="wrap_content"
android:layout_height="50dip"
android:layout_alignParentLeft="true"
android:background="@null"
android:contentDescription="@string/playButton"
android:scaleType="fitCenter"
android:src="@drawable/play" />
<ImageButton
android:id="@+id/fullScreenVideoButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="20dp"
android:background="@null"
android:contentDescription="@string/fullscreen"
android:src="@drawable/fullscreen" />
</RelativeLayout>
これらすべてがフラグメント内で使用されていることに注意してください。
もう少し経験のある人が時間をかけて、私が間違っていることを教えてくれることを願っています.