android 动态创建View

根据需求,有的时候需要进行动态创建布局,也就是xml中的布局需要通过addView()的形式动态的进行创建。如下图:

这里写图片描述

图中红色部分:如果在xml中,应该是这样的

<LinearLayout
                android:id="@+id/ll_facility_info_create"
                android:layout_width="match_parent"
                android:padding="20dp"
                android:orientation="vertical"
                android:background="@color/calendar_color_white"
                android:layout_height="wrap_content">

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="40dp"
                    android:text="设施服务"
                    android:textColor="#000000"
                    android:gravity="center_vertical"
                    android:textSize="@dimen/font20"/>

                <!--动态创建-->
                <LinearLayout
                    android:orientation="vertical"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content">
                    <TextView
                        android:layout_width="match_parent"
                        android:layout_height="30dp"
                        android:text="网络"
                        android:textColor="#000000"
                        android:gravity="center_vertical"/>
                    <LinearLayout
                        android:layout_width="match_parent"
                        android:orientation="horizontal"
                        android:layout_height="30dp">
                        <TextView
                            android:layout_width="0dp"
                            android:layout_height="match_parent"
                            android:layout_weight="1"
                            android:gravity="center_vertical"
                            android:text="wifi免费"
                            />
                        <TextView
                            android:layout_width="0dp"
                            android:layout_height="match_parent"
                            android:layout_weight="1"
                            android:gravity="center_vertical"
                            android:text="wifi免费"
                            />
                        <TextView
                            android:layout_width="0dp"
                            android:layout_height="match_parent"
                            android:layout_weight="1"
                            android:gravity="center_vertical"
                            android:text="wifi免费"
                            />

                    </LinearLayout>

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:orientation="horizontal"
                        android:layout_height="30dp">
                        <TextView
                            android:layout_width="0dp"
                            android:layout_height="match_parent"
                            android:layout_weight="1"
                            android:gravity="center_vertical"
                            android:text="wifi免费"
                            />
                        <TextView
                            android:layout_width="0dp"
                            android:layout_height="match_parent"
                            android:layout_weight="1"
                            android:visibility="invisible"
                            android:gravity="center_vertical"
                            android:text="wifi免费"
                            />
                        <TextView
                            android:layout_width="0dp"
                            android:layout_height="match_parent"
                            android:layout_weight="1"
                            android:visibility="invisible"
                            android:gravity="center_vertical"
                            android:text="wifi免费"
                            />

                    </LinearLayout>
                </LinearLayout>

            </LinearLayout>

而java代码:

//    动态添加设施服务
    private View addFacilityLayout(){
//        初始化布局参数
        LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
                LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
//        创建最外层的LinearLayout
        LinearLayout linearLayout = new LinearLayout(this);
//        设置布局参数
        linearLayout.setLayoutParams(layoutParams);
//        设置子View的Linearlayout
        linearLayout.setOrientation(LinearLayout.VERTICAL);

//        第一个子View  TextView
//        设置子View的布局
        LinearLayout.LayoutParams viewLayoutParams1 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
                DensityUtils.dip2px(context,30));
//        创建子View TextView
        TextView textView = new TextView(this);
//        设置内容的位置
        textView.setGravity(Gravity.CENTER_VERTICAL);
//        设置字体颜色
        textView.setTextColor(Color.BLACK);

        textView.setText("网络");
//        设置布局参数
        textView.setLayoutParams(viewLayoutParams1);
//        将第一子View添加到最外层的linearlayout中
        linearLayout.addView(textView);

        for (int i = 0; i < 2; i++) {
            //        第二个子View  LinearLayout
            LinearLayout.LayoutParams viewLayoutParams2 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,
                    DensityUtils.dip2px(context,30));

            LinearLayout linearLayout1 = new LinearLayout(this);

            linearLayout1.setLayoutParams(viewLayoutParams2);
//        设置子View的Linearlayout
            linearLayout1.setOrientation(LinearLayout.HORIZONTAL);

            //        第二个子View  LinearLayout中的TextView
            for (int j = 0; j < 3; j++) {
//          设置子View的布局
                LinearLayout.LayoutParams vp1 = new LinearLayout.LayoutParams(0,DensityUtils.dip2px(context,30),1.0f);
//        创建子View TextView
                TextView tv1 = new TextView(this);
//        设置内容的位置
                tv1.setGravity(Gravity.CENTER_VERTICAL);
//        设置布局参数
                tv1.setLayoutParams(vp1);
                //        设置字体颜色
                tv1.setText("wifi网络");
//                添加子view
                linearLayout1.addView(tv1);
            }
//            添加子View
            linearLayout.addView(linearLayout1);
        }
        return linearLayout;
    }

调用:

 LinearLayout ll_facility_info_create = findViewById(R.id.ll_facility_info_create);
 ll_facility_info_create.addView(addFacilityLayout());
你可以使用绝对布局(AbsoluteLayout)来动态创建并层叠视图(View)在Android应用中。下面是一个示例代码,演示如何使用绝对布局动态创建和层叠视图: ```java // 创建绝对布局 AbsoluteLayout absoluteLayout = new AbsoluteLayout(context); absoluteLayout.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)); // 创建第一个视图 TextView textView1 = new TextView(context); textView1.setText("View 1"); AbsoluteLayout.LayoutParams params1 = new AbsoluteLayout.LayoutParams( AbsoluteLayout.LayoutParams.WRAP_CONTENT, AbsoluteLayout.LayoutParams.WRAP_CONTENT, 100, 100); // 设置视图的位置 textView1.setLayoutParams(params1); absoluteLayout.addView(textView1); // 创建第二个视图 TextView textView2 = new TextView(context); textView2.setText("View 2"); AbsoluteLayout.LayoutParams params2 = new AbsoluteLayout.LayoutParams( AbsoluteLayout.LayoutParams.WRAP_CONTENT, AbsoluteLayout.LayoutParams.WRAP_CONTENT, 200, 200); // 设置视图的位置 textView2.setLayoutParams(params2); absoluteLayout.addView(textView2); // 将绝对布局添加到父容器中 ViewGroup parentView = findViewById(R.id.parent_view); // 替换为你的父容器视图ID parentView.addView(absoluteLayout); ``` 在这个示例中,我们首先创建了一个绝对布局对象 `absoluteLayout`,并设置了其布局参数为匹配父容器大小。然后,我们创建了两个文本视图 `textView1` 和 `textView2`,并分别设置了它们在绝对布局中的位置。最后,我们将这两个视图添加到了绝对布局中,并将绝对布局添加到父容器中。 注意:绝对布局(AbsoluteLayout)在较新的Android版本中已被弃用,推荐使用其他布局方式,比如相对布局(RelativeLayout)或线性布局(LinearLayout)来实现动态创建和层叠视图。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值