我的代码:
moveBottomtoTop = new TranslateAnimation(0, 0, 320, -320);
moveBottomtoTop.setDuration(1000);
moveBottomtoTop.setRepeatCount(-1);
moveBottomtoTop.setFillAfter(false);
imageView01.startAnimation(moveBottomtoTop);
imageView01.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
imageView01.setVisibility(View.INVISIBLE);
}
});
我的xml:
<FrameLayout 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"
tools:context=".MainActivity" >
<LinearLayout android:id="@+id/video_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@null">
<VideoView
android:id="@+id/surface_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</LinearLayout>
<LinearLayout
android:id="@+id/bubbles_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null"
android:layout_gravity="bottom">
<ImageButton
android:id="@+id/l01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/pressed01"
android:padding="1dp"
android:contentDescription="@string/cont_desc"/>
</LinearLayout>
</FrameLayout>
但是 onclick 事件不起作用。动画也留下了痕迹。我用谷歌搜索它,发现应用 padding="1dp" 可以解决,但没有运气。我的动画视图一半落后于视频视图,一半高于视频视图。请帮我解决这三个问题。我只想从这个应用程序中做一部分功能:气泡,即,将气泡从底部移动到顶部并在触摸时挤压。提前致谢。