4

ListView からマスター ディテールの状況で Android 5.0 共有要素遷移を実行しようとしています。画像を送ります。

マスター アクティビティが遷移している間、画像がまったく動かない入力遷移でグリッチが発生しました。Detail アクティビティが読み込まれると、Image は画面の左上から始まり、最終的な位置にアニメーション化されます。リターン トランジションは完全に機能します。画像は詳細位置からマスターの適切な位置にアニメーション化されます。

これは次のようになります: https://www.youtube.com/watch?v=AzyA8i27qWc

私は信じているようにパーミッションを正しく設定し、移行を指定しました:

<item name="android:windowContentTransitions">true</item>        
<item name="android:windowAllowEnterTransitionOverlap">true</item>
<item name="android:windowAllowReturnTransitionOverlap">true</item>

<!-- specify shared element transitions -->
<item name="android:windowSharedElementEnterTransition">
    @transition/change_image_transform</item>
<item name="android:windowSharedElementExitTransition">
    @transition/change_image_transform</item>

その遷移は次のように定義されます。

<transitionSet xmlns:android="http://schemas.android.com/apk/res/android">
    <changeImageTransform/>
    <changeBounds/>
    <changeTransform/>
</transitionSet>

リスト内の位置に基づいて、2 つのビューに同じ一意の transitionName 属性を指定しました。

アニメーションを行うために makeSceneTransitionAnimation を使用しています。

    View photo = (View) adapter.getView(position, null, listView).findViewById(R.id.photo);
    View navigationBar = findViewById(android.R.id.navigationBarBackground);

    ActivityOptions options = ActivityOptions.makeSceneTransitionAnimation(this,
            Pair.create(photo, photo.getTransitionName()),
            Pair.create(navigationBar, Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME));

    Bundle extras = new Bundle();
    Patient selectedPatient = patientList.get(position);
    extras.putParcelable("patient", selectedPatient);
    extras.putInt("position", position);

    Intent intent = new Intent(PatientListActivity.this, PatientActivity_.class);
    intent.putExtras(extras);

    startActivity(intent, options.toBundle());

(また、フェードアウトを避けるために、navigationBar を共有として指定していますが、これは正常に機能します)

return トランジションが正常に機能するのに、enter トランジションが機能しない理由がわかりません。解決策がエンタートランジションを遅らせることであるという他の質問を見てきましたが、それを試してみましたが、問題は残っています。詳細アクティビティの onCreate に追加したものは次のとおりです。

super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_patient);

    patient = getIntent().getExtras().getParcelable("patient");
    patient = app.getPatientByName(patient.getName());

    patientPhotoView.setImageDrawable(patient.getPhoto());

    /* Set up transition functionality */
    position = getIntent().getExtras().getInt("position");
    patientPhotoView.setTransitionName("patientPhoto" + position);
    patientNameView.setTransitionName("patientName" + position);

    postponeEnterTransition();
    final ViewTreeObserver observer = getWindow().getDecorView().getViewTreeObserver();
    observer.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
        @Override
        public boolean onPreDraw() {
            final ViewTreeObserver observer = getWindow().getDecorView().getViewTreeObserver();
            observer.removeOnPreDrawListener(this);
            startPostponedEnterTransition();
            return true;
        }
    });

私の詳細アクティビティには transitionName 要素はありませんが、コードで設定しています。着信アクティビティ (詳細) の関連部分は次のとおりです。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".PatientActivity">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="200dip"
            android:orientation="vertical"
            android:id="@+id/patient_top_layout">
            <ImageView
                android:id="@+id/patientPhoto"
                android:layout_width="92dip"
                android:layout_height="92dip"
                android:layout_below="@+id/connectionBar"
                android:layout_marginRight="12dip"
                android:layout_marginTop="12dip"
                android:contentDescription="Patient photo"
                android:src="@drawable/ic_profile_default" />
         </RelativeLayout>
    </LinearLayout>
</RelativeLayout

他の関連コードを投稿していただければ幸いです。何か案は?

解決した

Android Development Google+ ページのユーザー Chris P がこれを理解してくれました。onClick メソッドのマスター アクティビティには、次のものがありました。

View photo = (View) adapter.getView(position, null, listView).findViewById(R.id.photo);

解決策は、その行を次のように置き換えることでした。

View photo = (View) listView.getChildAt(position).findViewById(R.id.photo);

アダプターの getView メソッドを呼び出すと、ビュー自体が再作成されたと思います-リストが最初に作成されたときにのみメソッドを呼び出す必要があると思います。

4

1 に答える 1