android - Animation while changing orientation -
is possible set animation
when move activity in landscape view activity in portrait view ?
it's possible, not trivial. add property <activity>
in androidmanifest.xml
file:
android:configchanges="orientation|keyboard|keyboardhidden"
then, override activity's onconfigurationchanged
, perform animation there.
Comments
Post a Comment