如何将两个动画设置为布局并在方向更改时触发它?

时间:2015-04-28 01:45:03

标签: android android-layout android-animation

我希望我的布局动画并旋转90度(左/右),而不是为其横向模式创建新的xml布局。

1 个答案:

答案 0 :(得分:0)

尝试将此代码添加到onCreate()方法中。我无法尝试,但这应该有效,因为它在更改方向时也会调用oncreate方法。

if(getResources().getConfiguration().orientation==Configuration.ORIENTATION_PORTRAIT){
        //insert your code here when it is portrait
    }
    else if(getResources().getConfiguration().orientation==Configuration.ORIENTATION_LANDSCAPE){
        //insert your code here when it is landscape
    }