本文整理匯總了Java中android.app.ActivityOptions.makeThumbnailScaleUpAnimation方法的典型用法代碼示例。如果您正苦於以下問題:Java ActivityOptions.makeThumbnailScaleUpAnimation方法的具體用法?Java ActivityOptions.makeThumbnailScaleUpAnimation怎麽用?Java ActivityOptions.makeThumbnailScaleUpAnimation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類android.app.ActivityOptions
的用法示例。
在下文中一共展示了ActivityOptions.makeThumbnailScaleUpAnimation方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: imgSharedElementTransition
import android.app.ActivityOptions; //導入方法依賴的package包/類
public void imgSharedElementTransition(View view) {
Intent intent = new Intent(this, ImageSharedTransitionActivity.class);
ActivityOptions options = ActivityOptions.makeSceneTransitionAnimation(this, findViewById(R.id.img_shared), "img");
ActivityOptions options2 = ActivityOptions.makeScaleUpAnimation(view, view.getWidth() / 2, view.getHeight() / 2, 0, 0);
ActivityOptions options3 = ActivityOptions.makeSceneTransitionAnimation(this);
ActivityOptions options4 = ActivityOptions.makeThumbnailScaleUpAnimation(view, BitmapFactory.decodeResource(getResources(), R.mipmap.pic), view.getWidth() / 2, view.getHeight() / 2);
startActivity(intent, options.toBundle());
// overridePendingTransition(0, 0);
}
示例2: makeThumbnailScaleUpAnimation
import android.app.ActivityOptions; //導入方法依賴的package包/類
public static ActivityOptionsCompatJB makeThumbnailScaleUpAnimation(View source, Bitmap thumbnail, int startX, int startY) {
return new ActivityOptionsCompatJB(ActivityOptions.makeThumbnailScaleUpAnimation(source, thumbnail, startX, startY));
}