在android中,可以点击一个按钮,然后改变按钮大小,然后占据整个屏幕吗?可以这样做吗?因为我知道怎么做
我正在尝试这个,但它不会占据整个屏幕,它只会出现在一个屏幕中
direction Button btn = (Button) findViewById(R.id.button2);
ScaleAnimation scale = new ScaleAnimation((float)1.0, (float)1.5, (float)1.0, (float)1.5);
scale.setFillAfter(true);
scale.setDuration(500);
btn.startAnimation(scale);发布于 2015-02-28 17:15:24
是的,你可以通过缩放来设置按钮的动画效果。使用ScaleAnimation在按钮点击时实现
How to scale a button from right to left, android animation
编辑:
您可以使用TranslateAnimation将按钮移动到其他位置
https://stackoverflow.com/questions/28780008
复制相似问题