안녕하세요.
ApiDemo 에서 Transition3d를 활용해서 화면을 구성하고 있는데,
A 화면에서 B화면으로 넘어갈 때, B화면이 거꾸로 나옵니다.
A는 ListView이고,
B는 ImageView라면, ImageView를 Bitmap으로 생성하여, matrix.postScale로 조정할텐데,
제가 원하는 건,
A가 ImageView이고 , B가 ListView입니다.
그래서 ListView가 거꾸로 나옵니다. 어떻게 하면 될까요?
초보자라 맨땅에 해당중인데 잘 모르겠네요.
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/picture"
android:scaleType="fitCenter"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
<ListView
android:id="@android:id/list"
android:persistentDrawingCache="animation|scrolling"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layoutAnimation="@anim/layout_bottom_to_top_slide" />
</FrameLayout>



