レイアウトに3 つ表示したいのですViews
が、一度に 2 つしか表示できません。ボタンを押すと、一番左のビューが左にスライドし、真ん中のビューが左のビューの開始スペースを取ってスライドし、一番右のビューが画面にスライドするようにします。
ここにいくつかのスクリーンショットがあります:
アニメーション前:
アニメーション中(ペイント編集^^):
アニメーション後:
これは私のレイアウトファイルです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:weightSum="3" >
<FrameLayout
android:id="@+id/stations_stations"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="20dp"
android:layout_weight="1"
android:background="@drawable/fragment_border" />
<FrameLayout
android:id="@+id/stations_singlestation"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="20dp"
android:layout_weight="2"
android:background="@drawable/fragment_border" />
<FrameLayout
android:id="@+id/stations_trip"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="20dp"
android:layout_weight="1"
android:background="@drawable/fragment_border"
android:visibility="gone" />
</LinearLayout>
したがって、次のコードを使用して、画面の左端のビューをアニメーション化できます。
final View stationsContainer = findViewById(R.id.stations_stations);
Animation an = AnimationUtils.loadAnimation(this, R.anim.slide_out_left);
stationsContainer.startAnimation(an);
an.setAnimationListener(new AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
// TODO Auto-generated method stub
}
@Override
public void onAnimationRepeat(Animation animation) {
// TODO Auto-generated method stub
}
@Override
public void onAnimationEnd(Animation animation) {
stationsContainer.setVisibility(View.GONE);
}
});
これにより、ウィンドウの左端のビューが左にアニメートされ、非表示に設定されます。中央のビューを新しい位置にアニメーション化することもできますが、アニメーションが完了すると、中央のビューは非常に短時間元の位置に戻り、その後正しい位置に移動します。どうすればこのジャンプを回避できますか?