/* * Copyright (C) 2015 takahirom * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package com.kogitune.prelollipoptransition; import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.util.Log; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import android.widget.BaseAdapter; import android.widget.ListView; import com.kogitune.activity_transition.ActivityTransition; import com.kogitune.activity_transition.ActivityTransitionLauncher; import com.kogitune.activity_transition.ExitActivityTransition; public class ListViewActivity extends AppCompatActivity { private ExitActivityTransition exitTransition; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_list_view); Bundle bundle = getIntent().getExtras(); if (bundle != null) { exitTransition = ActivityTransition .with(getIntent()) .enterListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animation) { Log.d("TAG", "onEnterAnimationEnd!!"); } @Override public void onAnimationStart(Animator animation) { Log.d("TAG", "onEnterAnimationStart!!"); } }) .to(findViewById(R.id.parent_container)) .start(savedInstanceState); } } @Override public void onBackPressed() { if (exitTransition != null) { exitTransition.exit(this); } } }