如何将多个imageview绑定到android中的一个imageview

时间:2015-06-28 14:47:52

标签: android android-imageview

我有一个叫做圆圈的大图像视图和更多的小图像视图叫做ivblue1-3。 我希望旋转的圆形图像视图和所有的小图像视图一起旋转。 不幸的是,我不知道图像视图之间的绑定。

圆形图像视图是:

private ImageView mcircle = (ImageView)this.findViewById(R.id.circle);

小图片视图是:

private ImageView ivblue1=(ImageView)this.findViewById(R.id.ivblue1);
private ImageView ivblue2=(ImageView)this.findViewById(R.id.ivblue2);
private ImageView ivblue3=(ImageView)this.findViewById(R.id.ivblue3);

我已经有了处理圆圈旋转的XML:

<?xml version="1.0" encoding="utf-8"?>
<set android:interpolator="@android:anim/linear_interpolator"
xmlns:android="http://schemas.android.com/apk/res/android">
<rotate
    android:toDegrees="360"
    android:startOffset="0"
    android:repeatMode="restart"
    android:repeatCount="800"
    android:pivotY="50%"
    android:pivotX="50%"
    android:fromDegrees="0"
    android:duration="3500"/>
</set>

0 个答案:

没有答案