我最近遇到了一个应用程序Morning Routine,它载有很棒的动画。我遇到的那个是Sliding Drawer上使用的窗帘动画。
外观如何:
有谁知道如何实现这个动画?使用FoldingLayout Library并不能很好地实现它,而且完全不同。
答案 0 :(得分:0)
老实说,下面的评论非常简单:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical">
<cheesebaron.folding.FoldingLayout
android:id="@+id/fold_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<!-- put you curtain layouts here, listview e.t.c -->
</cheesebaron.folding.FoldingLayout>
<!-- put any other layouts here -->
</LinearLayout>
为什么不试着看看会发生什么。