【Android】如何动态根据需要的用Java添加安卓控件——以ImageView为例~~

作为安卓的小白入门,想实现一个,根据自己需要能动态显示屏幕上图片的功能。那就不知道要有多少个ImageView ,如何去添加呢?好不容易找到了一个博客,将它实现在下面~~

参考了博客【 http://blog.csdn.net/yuqing_1102/article/details/52083689  】

需求:界面有时候显示图片的数量未知,需要在代码中动态添加图片。
方法步骤:

1.布局:

 

<LinearLayout 
    android:id="@+id/theLayout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:orientation="horizontal"
    android:layout_centerHorizontal="true">
</LinearLayout>

2.代码:

LinearLayout theLayout= (LinearLayout) findViewById(R.id.theLayout);

//size:代码中获取到的图片数量
private void addGroupImage(int size){
    theLayout.removeAllViews();  //clear linearlayout
    for (int i = 0; i < size; i++) {
        ImageView imageView = new ImageView(this);
        imageView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));  //设置图片宽高
        imageView.setImageResource(R.drawable.ic_launcher); //图片资源
        theLayout.addView(imageView); //动态添加图片
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值