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

5 篇文章 0 订阅
1 篇文章 0 订阅

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);

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要将一个布局放置在另一个布局的右边,可以使用布局容器的LinearLayout或RelativeLayout。以下是使用LinearLayout和RelativeLayout实现这个目标的示例代码: 使用LinearLayout: ``` <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <LinearLayout android:id="@+id/left_layout" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1"> <!-- 左边的布局 --> </LinearLayout> <LinearLayout android:id="@+id/right_layout" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1"> <!-- 右边的布局 --> </LinearLayout> </LinearLayout> ``` 使用RelativeLayout: ``` <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <LinearLayout android:id="@+id/left_layout" android:layout_width="wrap_content" android:layout_height="match_parent"> <!-- 左边的布局 --> </LinearLayout> <LinearLayout android:id="@+id/right_layout" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_toRightOf="@+id/left_layout"> <!-- 右边的布局 --> </LinearLayout> </RelativeLayout> ``` 在这两个示例,我们使用两个LinearLayout或RelativeLayout并将它们组合在一起,一个用于左边的布局,另一个用于右边的布局。使用LinearLayout时,我们使用android:orientation="horizontal"将其设置为水平方向,并使用android:layout_weight="1"让它们平均分配空间。使用RelativeLayout时,我们将右边的布局设置为android:layout_toRightOf="@+id/left_layout",以将其放置在左边布局的右侧。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值