Android:圆形菜单动态旋转

时间:2016-04-27 09:00:34

标签: android android-layout wheel-menu

我需要在从服务器接收值时动态旋转滚轮。

我正在使用WheelMenu library,这可能是四。

wheelMenu.setAlternateTopDiv(INT); 使用这行代码不会对车轮旋转产生任何影响。

这是我要自动旋转的滚轮。

enter image description here

提前致谢。

1 个答案:

答案 0 :(得分:2)

您好我下载了库并阅读了文档。问题是图书馆没有做你想做的事。方法wheelMenu.setAlternateTopDiv(int)只是改变了方向盘的参考选择。

如果要自动旋转图像,请使用动画并旋转特定角度以到达所需位置。

编辑:

您可以尝试使用此代码,每次单击按钮但没有动画时,将图像旋转90度。尝试一下,让我知道你想要的是什么。

public class MainActivity extends AppCompatActivity {

private ImageView imageView;
private Button button;
private float rotation = 0;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    imageView = (ImageView) findViewById(R.id.image);
    button = (Button) findViewById(R.id.button);

    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            rotation = rotation + 90;
            imageView.setRotation(rotation);
        }
    });
}

@Override
protected void onDestroy() {
    super.onDestroy();

}
}

布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.gohidoc.realmtest.MainActivity">

<ImageView
    android:id="@+id/image"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/wheel"/>

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="turn"/>

</RelativeLayout>

图片:

Wheel