2

使用 SDK 2.3

我在屏幕底部有一个要滑出的视图,因此我使用此代码

       FrameLayout ll1 = (FrameLayout) findViewById(R.id.bottom_panel);
        Animation anim1 = AnimationUtils.loadAnimation(this, R.anim.slideoutbottom);
        anim1.setInterpolator((new  
                   AccelerateDecelerateInterpolator()));
        anim.setFillAfter(true);
        ll1.setAnimation(anim1);
        ll1.setVisibility(View.GONE);

xml:

       <?xml version="1.0" encoding="utf-8"?>
       <set xmlns:android="http://schemas.android.com/apk/res/android">
       <translate android:fromYDelta="0%p" android:toYDelta="45%p"          android:duration="500" android:zAdjustment="bottom"/>
       </set>

我遇到的问题是屏幕中间有一个视图正在扩展以填充视图滑出留下的空间。我不希望这种情况发生,我只需要中间的视图保持原样,然后我会淡出这个视图。

怎么解决 谢谢

4

1 回答 1

1

不要将可见性设置为View.GONE,而是使用View.INVISIBLE

这样,您滑出的视图将继续占据屏幕上的空间。

于 2012-04-28T12:30:00.337 回答