我可以旋转微调器吗? Androidstudio

时间:2016-04-18 22:01:55

标签: android android-studio spinner

简单的问题我无法在任何地方找到答案,有没有办法旋转微调器,没有旋转屏幕或任何东西只是创建一个旋转90度的旋转器?

提前致谢。

2 个答案:

答案 0 :(得分:0)

在API Level 11+上,欢迎您通过android:rotation in your layout XMLsetRotation() in Java轮播任意View。这是否能为您提供用户喜欢的东西,我不能说。

答案 1 :(得分:0)

以编程方式,您可以尝试这样的事情 -

           RotateAnimation animation = new RotateAnimation(fromDegrees, toDegrees, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);

            // Adding the time needed to rotate the image
            animation.setDuration(250);

            // Set the animation to stop after reaching the desired position. Without this it would return to the original state.
            animation.setFillAfter(true);

           //Then set the animation to your view
            view.startAnimation(animation);