我有一个要求,当我从服务器接收到一个值时,我需要动态地旋转一个轮子。
我正在使用可以是fou 的WheelMenu 库。
wheelMenu.setAlternateTopDiv(int); 使用这行代码不会对车轮旋转产生任何影响。
这是我想自动旋转的轮子。
提前致谢。
我有一个要求,当我从服务器接收到一个值时,我需要动态地旋转一个轮子。
我正在使用可以是fou 的WheelMenu 库。
wheelMenu.setAlternateTopDiv(int); 使用这行代码不会对车轮旋转产生任何影响。
这是我想自动旋转的轮子。
提前致谢。
嗨,我下载了库并阅读了文档。问题是图书馆不会做你想做的事。该方法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>
图片 :