android如何将一个布局布局加入到另一个布局中

博客介绍了在Android代码中动态添加布局的方法。先明确已存在的2号布局container和要添加的1号布局bottomView,设置bottomView的布局大小,再将其加入到2号布局中,并提及会给出详细代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

container:2号已经存在的布局  --

bottomView:1号将要添加的布局

lp设置要布局大小 

bottomView.setLayoutParams(lp);设置将要添加的布局的大小
container.addView(bottomView);将布局加入到2号布局中

详细代码:

LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
        LinearLayout.LayoutParams.WRAP_CONTENT);

LinearLayout bottomView = (LinearLayout) LayoutInflater.from(getContext()).inflate(R.layout.teach_class_main_bottom_layout, null);

bottomView.setLayoutParams(lp);
llPublish = (LinearLayout) bottomView.findViewById(R.id.ll_publish);
llPublish.setOnClickListener(this);

container.addView(bottomView);

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值