如何在android中添加4个图像视图到鳍状肢?

时间:2010-02-24 04:51:07

标签: android

我想一次向鳍状肢添加4个图像视图。请提供一些示例代码

我的代码是

    final ImageView imageview=new ImageView(this);
    imageview.setBackgroundResource(R.drawable.img1);       

    final ImageView imageview1=new ImageView(this);
    imageview.setBackgroundResource(R.drawable.img2);

    final ImageView imageview2=new ImageView(this);
    imageview.setBackgroundResource(R.drawable.img3);

    final ImageView imageview3=new ImageView(this);
    imageview.setBackgroundResource(R.drawable.img4);

我想将这些图像添加到鳍状肢上。

1 个答案:

答案 0 :(得分:0)

您希望每个鳍状肢包含4个图像视图吗? 使用四个图像视图创建.xml布局,为视图充气,通过findViewById获取您的图像视图并设置其源值,然后使用

将充气视图添加到您的鳍状肢
myFlipper.addView(myInflatedView)