gpt4 book ai didi

安卓。图片按钮。如何旋转按钮上的图像。不是整个按钮

转载 作者:行者123 更新时间:2023-11-29 02:41:43 25 4
gpt4 key购买 nike

我有带有图像的 ImageButton。我想旋转唯一的图像。
不是这样的: rotating button

这就是我所拥有的:

 <ImageButton
android:id="@+id/imageButton"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignBottom="@+id/button"
android:src="@drawable/up"
/>

动画:

<set xmlns:android="http://schemas.android.com/apk/res/android">
<rotate
android:fromDegrees="0"
android:toDegrees="360"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="0"
android:duration="1000" />
</set>

java代码:

public void clockwise(View view){
ImageButton image = (ImageButton)findViewById(R.id.imageButton);
Animation animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.myanimation);<p>
image.startAnimation(animation);
}

我应该使用 AnimationDrawable 或 Matrix 还是任何其他方法?

最佳答案

这是一个答案,如何旋转唯一的图像。谢谢@Fondesa,我采纳了你的建议。

1. res/amin/ic_play_sound_animation.xml 中的模拟文件:

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false">
<rotate
android:duration="1000"
android:fromDegrees="0"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:repeatMode="restart"
android:toDegrees="359"/>
</set>

2. 一个布局页面有两个 View (一个按钮和上面的图片):

<FrameLayout
android:id="@+id/frame"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="4"
android:layout_row="3">
<Button
android:id="@+id/id_btn_play_sound"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<ImageView
android:id="@+id/id_iv_play_sound_icon"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:scaleType="fitCenter"
android:src="@drawable/ic_play_sound_1"/>
</FrameLayout>

<强>3。 Activity 中的 Java 代码:

    private ImageView playSoundIcon = (ImageView)view. findViewById (R.id.id_iv_play_sound_icon);

private void runBtnAnimation() {
playSoundIcon.setImageResource(R.drawable.ic_playing_sound_2);
Animation rotation = AnimationUtils
.loadAnimation(getActivity().getApplicationContext(),
R.anim.ic_play_sound_animation);
playSoundIcon.startAnimation(rotation);
}

private void stopBtnAnimation() {
playSoundIcon.clearAnimation();
playSoundIcon.setImageResource(R.drawable.ic_play_sound_1);
}

4.可以看GIF动画,长什么样子: final animation on the button

关于安卓。图片按钮。如何旋转按钮上的图像。不是整个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43598383/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com