これは私のxmlです:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<SurfaceView
android:layout_width="match_parent"
android:layout_height="10dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="0dp" />
</RelativeLayout>
時代とともにこの景色を育んでいきたい。
ここにアニメーションのコードがあります
SurfaceView surfaceViewTimer = (SurfaceView) findViewById(R.id.surface_view_timer);
Animation surfaceGrowingAnimation = new TranslateAnimation
(0, 0, Animation.ZORDER_TOP, 300);
surfaceGrowingAnimation.setDuration(5000);
surfaceViewTimer.startAnimation(surfaceGrowingAnimation);
このアニメーションを画面の下から上に移動させたいと思います。現在、上から下に向かっています。