我是 Android Wear 的新手。目前我正在开发一个项目,该项目需要发送通知以在 Android Wear 上旋转图像。我试图用谷歌搜索任何相同的代码,但无济于事。
了解Android Wear不支持AnimationUtil api,是不是就不能动画旋转图片?如果能够支持,是否可以在这里显示一些示例代码?
谢谢。
我是 Android Wear 的新手。目前我正在开发一个项目,该项目需要发送通知以在 Android Wear 上旋转图像。我试图用谷歌搜索任何相同的代码,但无济于事。
了解Android Wear不支持AnimationUtil api,是不是就不能动画旋转图片?如果能够支持,是否可以在这里显示一些示例代码?
谢谢。
为什么不使用 setRotation?我在我的 Wear 应用程序中将它用于二手(电池效率也很高!)。
imgSeconds = (ImageView) findViewById(R.id.imgsecond);
imgSeconds.setRotation(seconds*6);
是的,这是可能的。将此代码添加到您的 Wear 应用的 Activity 中。
public class Animate extends Activity
{
Animation rotate;
@Override
protected void onCreate(Bundle savedInstanceState)
{
requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(savedInstanceState);
setContentView(R.layout.animate);
final WatchViewStub stub = (WatchViewStub) findViewById(R.id.mainmenu_viewstub);
stub.setOnLayoutInflatedListener(new WatchViewStub.OnLayoutInflatedListener()
{
@Override
public void onLayoutInflated(WatchViewStub stub)
{
rotate = = AnimationUtils.loadAnimation(Animate.this,
R.anim.rotate);
ImageView tip = (ImageView) findViewById(R.id.tip);
//Write the below line of code to animate image at the place where you are getting the //notification.
tip.startAnimation(rotate);
}
});
}
}
旋转.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<rotate android:fromDegrees="0"
android:toDegrees="360"
android:pivotX="50%"
android:pivotY="50%"
android:duration="600"
android:repeatMode="restart"
android:repeatCount="infinite"
android:interpolator="@android:anim/cycle_interpolator"/>
</set>
希望这会帮助你哥们..谢谢..