我有回收器视图。在Recyclerview项目的OnClick内部,我应用了共享元素过渡。这是回收器视图适配器:
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
final View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.dashboard_location_item, parent, false);
//final TextView locationName = (TextView)view.findViewById(R.id.locationName);
//String transitionName = locationName.getTransitionName();
// locationName.setTransitionName("testing");
final ViewHolder vh = new ViewHolder(view);
view.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int pos = vh.getAdapterPosition();
if( pos != RecyclerView.NO_POSITION) {
final String cityName = mItems[pos];
Log.d(TAG,"city name : " + cityName);
Intent intent = new Intent(mCtx, DashboardDetailPageActivity.class);
// Get the transition name from the string
TextView locationName = (TextView)view.findViewById(R.id.locationName);
String transitionName = locationName.getTransitionName();
ActivityOptionsCompat options =
ActivityOptionsCompat.makeSceneTransitionAnimation((Activity) mCtx,
locationName, // Starting view
transitionName // The String
);
//Start the Intent
mCtx.startActivity(intent, options.toBundle());
//transitionToActivity(DashboardDetailPageActivity.class, vh, cityName, view);
}
}
});
return vh;
}
这是我的cardView的布局:
<?xml version="1.0" encoding="utf-8"?>
<ImageView
android:id="@+id/locationIcon"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<TextView
android:id="@+id/locationName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/location"
android:textColor="@color/white"
android:layout_gravity="center"
android:textSize="@dimen/textsize_18"
android:transitionName="@string/title"
android:textAllCaps="true"
android:gravity="center"/>
这是我的最终活动布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/navigationDrwaerSerachLayout"
android:layout_width="match_parent"
android:layout_height="@dimen/dash_toolbar_height"
android:background="@drawable/city_image"
app:elevation="0dp">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="@dimen/toolbar_height2"
android:minHeight="@dimen/toolbar_height2"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_scrollFlags="scroll|enterAlways|snap"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/cityIcon"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:transitionName="testing" />
<TextView
android:id="@+id/cityNameTextView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="@string/location"
android:textAllCaps="true"
android:textColor="@color/white"
android:textSize="@dimen/textsize_18"
android:transitionName="@string/title" />
</FrameLayout>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/sample2_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/navigationDrwaerSerachLayout">
</FrameLayout>
</RelativeLayout>
<com.lapism.searchview.SearchView
android:id="@+id/searchView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="com.lapism.searchview.SearchBehavior" />
</android.support.design.widget.CoordinatorLayout>
<include layout="@layout/nav" />
过渡效应不起作用。它直接从开始活动迁移到最终活动。这里有什么问题?
您需要一个唯一的过渡名称。在列表项目中进行动画的情况,您需要将视图的过渡名称设置为每个列表项目唯一的东西(请考虑使用适配器位置或列表项目的ID),然后将该唯一的过渡名称传递给您的目标活动或碎片。在目标视图中,您会通过ID找到视图,然后将过渡名称设置为您传递的任何内容,从而通过过渡名称将两个视图链接在一起。
您的代码可能还有其他问题,但这是我立即注意到的。
而不是从回收器视图适配器制作动画,而是从父活动中做到了。我想,上下文必须有一些问题
您是否在主题中启用了窗口内容过渡?
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="android:windowContentTransitions">true</item>
</style>