0

我正在创建一个 android 应用程序,我想生成多个具有相同图像和不同位置的图像视图。我有一个图像类和 for 循环我创建了 15 个图像并将其添加到 ArrayList 并使用增强的 for 循环设置不同的位置,但现在它们是 15 张图片,只有一个位置,看起来像 1 张图片。看看我的代码

这是主要课程

private ImageView pumpkinImg;
private int imageY = 50;
private int imageX = 50;
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_play_second);

    pumpkinImg = (ImageView) findViewById(R.id.pumpkin_second);

    ArrayList<Pumpkin> pumpkins = new ArrayList<Pumpkin>();
    for(int i = 0; i < 15; i ++){
        Pumpkin p = new Pumpkin(pumpkinImg);

        pumpkins.add(p);
    }
    for(Pumpkin pmk : pumpkins){

        pmk.setV(pumpkinImg);
        pmk.setPosX(pmk.getV(), imageX);
        pmk.setPosY(pmk.getV(), imageY);

        imageX += 20;
        imageY += 20;
    }


}

这是我的南瓜课

public class Pumpkin {

private int x;
private int y;
ImageView v;

public Pumpkin(ImageView v){


}

public void setPosX(ImageView v,int posX){
    v.setX(posX);
}
public void setPosY(ImageView v,int posY){
    v.setY(posY);
}

public ImageView getV() {
    return v;
}

public void setV(ImageView v) {
    this.v = v;
}

}

这是我的 XML 文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="150dp"
    android:text="@string/level_two_welcome"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<ImageView
    android:id="@+id/pumpkin_second"
    android:layout_width="50dp"
    android:layout_height="50dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/level_2" />

</RelativeLayout>
4

1 回答 1

0

您只是在创建 ImageView 的一个实例,并且正在引用该实例!此外,您必须将图像添加到正确的 Android 布局中!

您在 Activity 类中引用的当前布局是

R.layout.activity_play_second

你能提供,这是什么布局?

看来,这个布局包含一个 ImageView

R.id.pumpkin_second

显示南瓜图像。我想,这不是你想要的!

将所有 ImageView 的动态创建放入您的 for 循环中:

//create ImageView from drawable resource
ImageView iv = new ImageView( this );
iv.setBackgroundResource( R.drawable.my_resource );

//add to main layout
( (ViewGroup)this.findViewById( R.layout.activity_play_second ) ).addView( iv );

请查找完整的代码示例 - 确保调整资源标识符!

    setContentView( R.layout.my_layout );
    ViewGroup view = (ViewGroup)findViewById( R.id.my_container_id_in_my_layout );

    ImageView iv = new ImageView( this );
    iv.setImageResource( R.drawable.my_drawable_resource );

    ImageView iv2 = new ImageView( this );
    iv2.setImageResource( R.drawable.my_drawable_resource );

    view.addView( iv  );
    view.addView( iv2 );

您需要位于布局文件内的容器视图的 ID。这是一个示例布局文件( res/layout/my_layout.xml ):

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:id="@+id/my_container_id_in_my_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        />

</RelativeLayout>

希望这可以帮助?

问候

克里斯托弗

于 2013-08-27T11:42:23.713 回答