Android系统。的ImageButton。如何在按钮上旋转图像。不是整个按钮

时间:2017-04-24 21:58:21

标签: android image button rotation imagebutton

我的 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"
    />
&#13;
&#13;
&#13;
动画:

&#13;
&#13;
<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>
&#13;
&#13;
&#13;
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还是其他任何方法?

2 个答案:

答案 0 :(得分:0)

您有两种选择:

  1. 使用Button将您的FrameLayout与图片分开。在这种情况下,您可以在Button上设置点击侦听器,并仅将轮播应用于ImageView。这样做更容易,更快,但它是一种解决方法,第二种选择的性能更好,因为您没有嵌套布局:

    <FrameLayout
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_alignBottom="@+id/button">
    
        <Button
            android:id="@+id/imageButton"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    
        <ImageView
            android:id="@+id/imageButtonContent"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </FrameLayout>
    
  2. 使用AnimationDrawable。您可以在动画期间提供可绘制的列表。我认真推荐这个。

答案 1 :(得分:0)

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

1。 res / amin / ic_play_sound_animation.xml中的Amination文件:

<?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。一段布局页面,包含两个视图(上面的按钮和图片):

<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。活动中的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