有什么办法可以在两个视图中分开AppCompatButton,以便可以对标题(按钮的背景)和标题(文本)进行共享元素转换?
到目前为止,我有:
Pair<View, String> p1 = new Pair<>((View) holder.button, "headerBackground");
Pair<View, String> p2 = new Pair<>((View) holder.button, "title");
ActivityOptions options = ActivityOptions.makeSceneTransitionAnimation((Activity) context, p1, p2);
但是我没有这样的文本平滑过渡,特别是在返回时...