Привет, я сделал приложение, в котором я использую общий элемент перехода для некоторой анимации между изображением реселлера во фрагменте и просмотром слайдера, который находится в действии.Теперь проблема в том, что когда я применяю переход к общему элементу и щелкаю на изображении реселлера, он на мгновение мигает, и детальное действие начинается, но без анимации, и когда я нажимаю кнопку «Назад», происходит анимация с общим элементом, но это тоже очень глючно.Под глючным я подразумеваю, когда я нажимаю на всплывающий белый фон карты, а затем поверх него появляется изображение.Для этого я просмотрел несколько учебных пособий по YouTube, а также поискал в Google и нашел несколько связанных Так что вопрос , но все еще не могу понять, где я ошибаюсь, потому что я дал одно и то же имя перехода для обоихimageviews.пожалуйста, если кто-то может помочь мне здесь.Спасибо
Вот мой код для переработчика и styles.xml
styles.xml
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowContentTransitions" tools:targetApi="lollipop">true</item>
<item name="android:windowAllowEnterTransitionOverlap" tools:targetApi="lollipop">true</item>
<item name="android:windowAllowReturnTransitionOverlap" tools:targetApi="lollipop">true</item>
<item name="android:windowSharedElementEnterTransition" tools:targetApi="lollipop">@android:transition/move</item>
<item name="android:windowSharedElementExitTransition" tools:targetApi="lollipop">@android:transition/move</item>
</style>
</resources>
ViewHolder
public class VH extends RecyclerView.ViewHolder implements View.OnClickListener{
ImageView iv;
TextView tv;
HWRatioContainer ivc;
Context context;
int[] images;
private AtomicBoolean enterTransitionStarted;
public static final String EXTRA_TRANSITION_IMAGE = "image";
CustomButton top_recycler_button;
public VH(View itemView,Context context,int[] images) {
super(itemView);
iv = (ImageView) itemView.findViewById(R.id.iv);
this.context = context;
this.images = images;
this.enterTransitionStarted = new AtomicBoolean();
top_recycler_button = (CustomButton)itemView.findViewById(R.id.top_recycler_button);
itemView.setOnClickListener(this);
//tv = (TextView) itemView.findViewById(R.id.tv);
///ivc = (HWRatioContainer) itemView.findViewById(R.id.ivc);
/*ivc.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
ivc.getViewTreeObserver().removeOnGlobalLayoutListener(this);
} else {
ivc.getViewTreeObserver().removeGlobalOnLayoutListener(this);
}
ivc.setTranslationX(ivc.getWidth() >> 4);
}
});*/
}
@SuppressLint("RestrictedApi")
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
@Override
public void onClick(View view) {
Intent intent = new Intent(context,DetailsActivity.class);
intent.putExtra("slider_image",images[getAdapterPosition()]);
iv.setTransitionName(context.getString(R.string.first_page_transition));
ActivityOptionsCompat compat = ActivityOptionsCompat.makeSceneTransitionAnimation((MainActivity)context,iv,ViewCompat.getTransitionName(iv));
context.startActivity(intent,compat.toBundle());
}
}
и код для адаптера viewpager, который работает
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
@RequiresApi(api = Build.VERSION_CODES.KITKAT)
@NonNull
@Override
public Object instantiateItem(@NonNull ViewGroup container, int position) {
layoutInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = layoutInflater.inflate(R.layout.custom_dots_layout,null);
imageView = (ImageView)view.findViewById(R.id.detail_viewpager_image);
//Intent intent = new Intent();
imageView.setImageResource(getImage());
if(Build.VERSION.SDK_INT>Build.VERSION_CODES.LOLLIPOP){
imageView.setTransitionName(context.getString(R.string.first_page_transition));
}
ViewPager viewPager1 = (ViewPager)container;
viewPager1.addView(view,0);
return view;
}