我正在使用我的应用内的更新程序。当有可用更新时,将出现一个片段并提供一些信息。这个外观应该是从左侧滑动的cardview形式的动画。 在此过程中,此片段下方的其他内容应向下滑动动画。
目前片段按预期显示,但我不知道如何使用动画滑动下面的内容。 我正在使用android.support.v4.app.Fragment。
我的布局文件:
<LinearLayout
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_update"
tools:context="vkay.materialdesign.Update.UpdateActivity"
android:orientation="vertical"
android:layout_marginTop="8dp">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/cv_update_currentinfo"
style="@style/cardview_style">
[some content here]
</android.support.v7.widget.CardView>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/frame"
android:orientation="vertical" />
[content which should slide down]
</LinearLayout>
在framelayout中插入片段的功能:
FragmentManager manager = getSupportFragmentManager();
FragmentTransaction transaction = manager.beginTransaction();
update_overview frag = new update_overview();
transaction.setCustomAnimations(android.R.anim.slide_in_left, android.R.anim.slide_out_right);
transaction.add(R.id.frame, frag, "frag");
transaction.commit();