0

我有一个顶级 LinearLayout,它有许多子元素,由一个按钮和一个不可见的 LinearLayout 组成。当我按下按钮时,我希望 LinearLayout 的内容动画并顺利按下所有内容。相反,正在发生的事情是一个大的空白区域立即被雕刻出来,然后 LinearLayout 动画进入空白空间,而不是所有东西都被优雅地推下。

我的 onCreate 方法创建了大量的 LinearList 以及每个子 LinearList 的所有子级。如果您运行此代码,您将看到 20 个标有“按钮 X”的按钮,其中 X 为 0-19。当您单击一个按钮时,下面的缩进按钮动画(如子菜单)但“按钮 X+1”形式的下一个按钮会立即一直向下绘制,而不是动画被按下。

@Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

    LinearLayout topll = (LinearLayout)findViewById(R.id.topll);

    for(int i=0;i<20;i++)
    {
        Button b = new Button(this);
        b.setText("Button"+String.format("%s", i));
        b.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT, 1f));
        b.setOnClickListener(this);
        topll.addView(b);

        LinearLayout l = new LinearLayout(this);
        l.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT, 1f));
        l.setVisibility(View.GONE);
        l.setOrientation(LinearLayout.VERTICAL);

        for(int k=0; k<10; k++)
        {
            Button b2 = new Button(this);
            b2.setText("New Button"+String.format("%s", k));
            LinearLayout.LayoutParams p = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT, 1f);
            p.setMargins(80, 0, 0, 0);
            b2.setLayoutParams(p);
            //b2.setOnClickListener(this);
            l.addView(b2);
        }

        topll.addView(l);
    }


}

这是我按下按钮时调用的方法...

@Override
    public void onClick(View arg0)
    {
        LinearLayout topll = (LinearLayout)findViewById(R.id.topll);

    for(int i=0;i<topll.getChildCount();i++)
    {
        if(topll.getChildAt(i) == arg0)
        {
            LinearLayout ll = (LinearLayout)topll.getChildAt(i+1);
            if(ll.getVisibility() == View.GONE)
            {
                Animation animation = AnimationUtils.loadAnimation(this, R.anim.expanddown);
                ll.setAnimation(animation);
                animation.start();
                ll.setVisibility(View.VISIBLE);
            }
            else
            {
                Animation animation = AnimationUtils.loadAnimation(this, R.anim.expandup);
                ll.setAnimation(animation);
                animation.start();
                ll.setVisibility(View.GONE);
            }
        }
    }
}

最后是我的动画 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <scale android:duration="1000" 
        android:startOffset="0" 
        android:fillAfter="false" 
        android:fromXScale="1.0" 
        android:fromYScale="0.0" 
        android:toYScale="1.0" 
        android:toXScale="1.0" 
        android:pivotY="0%"/>
</set>
4

1 回答 1

0

首先使用

ll.startAnimation(animation);

代替 :

ll.setAnimation(animation);
animation.start();

然后使用动画监听器和

animation.setAnimationListener(new AnimationListener() {
                    public void onAnimationStart(Animation anim)
                    {
                    };
                    public void onAnimationRepeat(Animation anim)
                    {
                    };
                    public void onAnimationEnd(Animation anim)
                    {
                        ll.setVisibility(View.VISIBLE);
                        // or what ever
                    };
                });         
于 2013-03-30T00:41:22.003 回答