单个AppCompatButton中有sharedElementTransitions,但有两个视图

时间:2019-04-07 05:56:47

标签: android android-appcompat android-transitions

有什么办法可以在两个视图中分开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);

但是我没有这样的文本平滑过渡,特别是在返回时...

0 个答案:

没有答案