i think I have encountered a bug and would love to hear your opinion about 
it (as I didnt found post on stackoverflow about it).

So I make explode transaction between 2 activities and have somewierd bug.

My second activity have explode transaction defined in the xml style and it 
works fine on all the views EXCEPT TextInputLayout (the layout hint is
first to apear / last to disapear depand on exit / enter transaction 
without any enter / exit animation).

some snipshots:

*transaction code:*

                                startActivity(intent, ActivityOptionsCompat.
makeSceneTransitionAnimation(getActivity()).toBundle());


*the bugged(?) view:*

    <android.support.design.widget.TextInputLayout
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:layout_marginRight="@dimen/activity_vertical_margin"
       android:layout_marginLeft="@dimen/activity_vertical_margin"
       >
   <android.support.design.widget.TextInputEditText
       android:id="@+id/new_order_phone_text"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:hint="@string/phone_number"
       android:inputType="number"
       android:maxLength="10"
       android:gravity="right"
       />
   </android.support.design.widget.TextInputLayout>



*the style:*
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
       <!-- 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:windowActivityTransitions">true</item>
       <item name="android:windowEnterTransition">
@android:transition/explode</item>
       <item name="android:windowExitTransition">@android:transition/explode
</item>
   </style>


-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/a5f298d4-ff04-4bdc-84ad-b4fb2a6ea217%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to