向下移动线性布局

时间:2014-02-07 18:22:39

标签: android android-layout android-animation

我正在开发一个应用程序,它在一个xml文件中有2个线性布局。在开始时,一个线性布局设置为不可见。当用户按下按钮时,可见的线性布局应向下滑动90%并显示第二个线性布局。我编写了动画文件并使其正常工作。我的问题是,在动画之后,视图会回到原来的样子。如何向下移动第一个线性布局以显示第二个线性布局?有什么帮助吗?

MainActivity文件:

    public class MainActivity extends Activity implements   OnClickListener,AnimationListener{

LinearLayout main,menu;
    Button B;
    Animation slideUp;
    LinearLayout.LayoutParams params;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
       slideUp = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.main_slide_down);
    main=(LinearLayout)findViewById(R.id.maincontent);
    menu=(LinearLayout)findViewById(R.id.mainmenu);
    B= (Button)findViewById(R.id.button1);
    B.setOnClickListener(this);



    main.setLayoutAnimationListener(this);




}



@Override
public void onClick(View v) {
    // TODO Auto-generated method stub
    switch(v.getId())
    {
       case R.id.button1:
        // main.setAnimation(slideUp);
        menu.setVisibility(View.VISIBLE);
        main.startAnimation(slideUp);


        break;

    }

}

}

XML文件:

     <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"

tools:context=".MainActivity" >


<LinearLayout 
    android:layout_height="match_parent"
     android:layout_width="match_parent"
     android:id="@+id/mainmenu"
     android:background="#6F26F0"
     android:visibility="invisible" 
     android:orientation="vertical"
    >
    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" />

 </LinearLayout>


  <LinearLayout 
       android:layout_height="match_parent"
     android:layout_width="match_parent"
     android:id="@+id/maincontent"
      android:background="#3BED00"
         android:orientation="vertical"
    >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />



   </LinearLayout>





  </RelativeLayout>

3 个答案:

答案 0 :(得分:1)

让我们废弃动画并改为使用布局技巧!

以下是您需要做的事情:

XML

•将根布局更改为LinearLayout

•将android:animateLayoutChanges="true"添加到root,mainmenu&amp;搜索Maincontent


机器人:ID = “@ + ID / MainMenu的”

•将可见性更改为android:visibility="gone"

•将身高更改为android:layout_height="0dp"

•添加android:layout_weight="1"

的重量

机器人:ID = “@ + ID /搜索Maincontent”

•将身高更改为android:layout_height="wrap_content"

现在是什么?

你已经完成了!只需点击按钮,即可将主菜单的可见性更改为可见!

答案 1 :(得分:0)

  

如何向下移动第一个线性布局以显示第二个线性布局   布局?

所以你走了:

            main.startAnimation(slideUp);
            slideUp.setFillAfter(true);
            slideUp.setAnimationListener(new AnimationListener()
            {

                @Override
                public void onAnimationStart(Animation animation) {}

                @Override
                public void onAnimationRepeat(Animation animation) {}

                @Override
                public void onAnimationEnd(Animation animation) {

               // Make Your 1st Linearlayout Invisible/Gone &
               // Make your 2nd Linearlayout Visible here.

                }
            });

答案 2 :(得分:0)

您可能必须正确设置布局权重属性才能占用90%的空间(0.9布局权重)。可见性可以在Visible和Gone之间切换。