我有这样的看法
当用户点击任何按钮时,比如说“奥迪”。
我想要的是在上面显示一个带有动画的视图
我试过的是
我做了这样的布局(只是为了测试动画)
<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" >
<LinearLayout
android:id="@+id/hideLayout"
android:layout_width="200dip"
android:layout_height="wrap_content"
android:layout_above="@+id/buttonLayout"
android:background="#f0f"
android:visibility="gone" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</LinearLayout>
<LinearLayout
android:id="@+id/buttonLayout"
android:layout_width="200dip"
android:layout_height="wrap_content" >
<Button
android:id="@+id/btn_showView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show View" />
</LinearLayout>
然后制作动画
Animation showView=(Button)findViewById(R.id.btn_showView);
我的动画文件是
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="300"
android:fromYDelta="100%p"
android:toYDelta="0" />
</set>
进而
showView=(Button)findViewById(R.id.btn_showView);
showView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
hideLayout.startAnimation(animShow);
animShow.setAnimationListener(new AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
hideLayout.setVisibility(View.VISIBLE);
}
@Override
public void onAnimationRepeat(Animation animation) {
// TODO Auto-generated method stub
}
@Override
public void onAnimationEnd(Animation animation) {
hideLayout.setVisibility(View.VISIBLE);
}
});
}
});
它正在工作,但不是我想要的。是text View
从底部来的。我希望我的图像显示我想要的。
提前致谢。