Android开发笔记: Android动态添加、删除控件

来源:互联网 发布:简述什么是大数据时代 编辑:程序博客网 时间:2024/04/30 00:40

    此文章主要是将如何动态添加,删除控件

1 创建布局文件

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:id="@+id/dynamic_layout"    android:orientation="vertical" >    </LinearLayout>


2 代码实现动态添加,删除



3 效果图











原创粉丝点击