Android:如何滑动片段?

时间:2016-10-23 10:29:32

标签: android android-fragments android-animation

我正在尝试将动画添加到从按钮点击,从底部出现的片段。

片段布局

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentBottom="true"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="50dp"
        android:background="@color/wallet_holo_blue_light"
        android:layout_gravity="center"
        android:text="This is a fragmentt layout"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true" />

</RelativeLayout>

上传文件夹

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="@android:integer/config_mediumAnimTime">

    <translate xmlns:android="http://schemas.android.com/apk/res/android"
        android:duration="@android:integer/config_mediumAnimTime"
        android:fromYDelta="50.0%p"
        android:interpolator="@android:anim/decelerate_interpolator"
        android:toYDelta="30" />
</set>

在此处致电:

public void onClick(View view) {

           if(view == button ){

        FragmentManager fragmentManager = getFragmentManager();
        FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
        FragmentOnMap hello = new FragmentOnMap();

        fragmentTransaction.add(R.id.fragment_container, hello, "HELLO");
        fragmentTransaction.setCustomAnimations(R.animator.slide_up,0);
        fragmentTransaction.commit();
    }


}

Android Fragments and animation显示了如何向上和向下滑动,我只是要制作动画的片段。因此我的问题是setcustomanimation()函数的第二个参数

我在提交之前尝试使用fragmentTransaction.setCustomAnimations(),但没有帮助。

它确实出现在底部,但没有过渡效果。 任何指导都会有用。 谢谢

1 个答案:

答案 0 :(得分:2)

你应该在setCustomAnimation之前add,这就是全部。

另外,您的代码应该有问题,因为您应该使用片段(v4)的支持库而不是app,并在使用片段时调用getSupportFragmentManager并修复代码的所有部分,并且您不使用支持库。

如果您不想更改此设置,可以将此代码用于slide_up动画:

<?xml version="1.0" encoding="utf-8"?>
<objectAnimator
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/accelerate_decelerate_interpolator"
    android:propertyName="translationY"
    android:valueType="floatType"
    android:valueFrom="1280"
    android:valueTo="0"
    android:duration="@android:integer/config_mediumAnimTime"/>