Android addview—动态添加view

一、前言

在日常的开发中经常遇到需要动态添加子view的情况,addview是ViewGroup的特有方法,可以在布局中动态添加view,而view是不存在这个方法的。

二、介绍

1、方法介绍

addview有以下几种方式

addView(View child)   // child 被添加的View
addView(View child, int index)   // index 被添加的View的索引
addView(View child, int width, int height)   // width,height被添加的View指定的宽高
addView(View view, ViewGroup.LayoutParams params)   // params被添加的View指定的布局参数
addView(View child, int index, LayoutParams params) 

2、使用方式

addview的使用在LinearLayout和RelativeLayout的效果不相同,首先介绍在LinearLayout中的使用。

2.1、LinearLayout中的使用

首先创建一个xml文件,以ConstraintLayout作为根布局文件,其中包裹一个LinearLayout和两个测试的按钮。

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:id="@+id/root_view">
    <LinearLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <!--一开始就存在的数据-->
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="开始存在的数据"
            android:textColor="#000000"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
    </LinearLayout>
    <!--测试按钮一-->
    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="测试一"
        android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toBottomOf="parent" />
    <!--测试按钮二-->
    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginRight="8dp"
        android:text="测试二"
        android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent" />
</android.support.constraint.ConstraintLayout>

一开始的效果如下图


一开始的效果

然后编写代码,初始化控件和设置点击事件

public class MainActivity extends AppCompatActivity {

    private ConstraintLayout layout;
    private LinearLayout linearLayout;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        layout = findViewById(R.id.root_view);
        linearLayout = findViewById(R.id.container);
        findViewById(R.id.button1).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                addView();
            }
        });
        findViewById(R.id.button2).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                addviewTwo();
            }
        });
    }
    /**
     * 按钮一的点击事件
     */
    private void addView() {
        TextView textView = new TextView(this);
        //获取当前时间并格式化
        String currentTime = dateToStamp(System.currentTimeMillis());
        textView.setText("测试一..."+currentTime);
        textView.setTextColor(getResources().getColor(R.color.colorAccent));

        linearLayout.addView(textView,0);
    }
    /**
     * 按钮二的点击事件
     */
    private void addviewTwo() {
        TextView textView = new TextView(this);
        //获取当前时间并格式化
        String currentTime = dateToStamp(System.currentTimeMillis());
        textView.setText("测试二..."+currentTime);
        textView.setTextSize(20f);
        textView.setTextColor(getResources().getColor(R.color.colorPrimary));

        linearLayout.addView(textView,1);
    }
  /**
   *格式化事件
   */
    public String dateToStamp(long s) {
        String res;
        try {
            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            Date date = new Date(s);
            res = simpleDateFormat.format(date);
        } catch (Exception e) {
            return "";
        }
        return res;
    }
}

此时我们可以看到我们的按钮使用的是 addview(view,index),这个方法。首先button1的是addView(view,0),button2的是addview(view,1),让我们来看一下效果。
点击两次button1后,如下图:


点击按钮一

可以看到新添加的数据都在最上面的第一个。由此我们可以得出,addView(view,0),在LinearLayout中在在顶部添加view。
接下来我们点击几次button2,看看效果


点击按钮二

按钮二的index的值是1,根据效果来看addView会一直在第二层中添加view。
总结一下可以知道在LinearLayout中使用addView(view,index),当index=0时,会在顶层添加view,也就是第一层添加。当index=1时,会在第二层添加view。

2.2、RelativeLayout中使用

我们将布局文件中的LinearLayout变为RelativeLayout

<RelativeLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <!--一开始就存在的数据-->
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="开始存在的数据"
            android:textColor="#000000"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
    </RelativeLayout>

当点击按钮时


点击按钮
可以看出来addView(view,index),在RelativeLayout中使用就是添加view层,当index=0是就会在最底层也就是第一层添加view层。当index=1时,就会在第二层添加view层。

2.3 在其他布局文件中的效果和在RelativeLayout中是一样的。

3、方法分析

3.1、addView(view,index)分析

这里我们会想传index的值是负数会是是怎样的效果呢?,比如index=-1?我们改一下代码,试一下效果

 private void addView() {
        TextView textView = new TextView(this);
        String currentTime = dateToStamp(System.currentTimeMillis());
        textView.setText("测试一..."+currentTime);
        textView.setTextColor(getResources().getColor(R.color.colorAccent));
        linearLayout.addView(textView,-1);
    }

我们修改成上面的代码,运行一下:

index=-1

ok,我们发现会一直在最下面的一层添加view,为什么会这样,我们点开源码来看一下,其中源码中有一句对index的判断,如下:

if (index < 0) {
      index = mChildrenCount;
  }
addInArray(child, index);

源码中如果index<0了,就将index赋值成了布局中子view的个数。有兴趣的可以去看源码。

3.2 addView(view) 分析

如果我们在addView中不传参数会怎么样呢?我们继续修改代码运行一下测试

private void addView() {
        TextView textView = new TextView(this);
        String currentTime = dateToStamp(System.currentTimeMillis());
        textView.setText("测试一..."+currentTime);
        textView.setTextColor(getResources().getColor(R.color.colorAccent));
        linearLayout.addView(textView);
    }
没有传index

可以发现没有传index的时候,效果和传入index小于0的效果是一样的,这是为什么呢?我们继续点入源码看:

public void addView(View child) {
        addView(child, -1);
    }

看源码发现当没有传index值的时候,会默认index=-1,此时就仍然在最下面添加view。

3.3 其他的都是比较简单的添加参数,我们这里贴出源码就不细说了

addView(View child, int width, int height)

public void addView(View child, int width, int height) {
        final LayoutParams params = generateDefaultLayoutParams();
        params.width = width;
        params.height = height;
        addView(child, -1, params);
    }

addView(View view, ViewGroup.LayoutParams params)

public void addView(View child, LayoutParams params) {
        addView(child, -1, params);
    }

三、总结

addView动态添加代码的方法,在LiearLayout中会在竖直或者水平方向添加子view,在RelativeLayout中会增加view的层级数。

感谢以下大神的资料
Android动态添加View之addView的用法
Android使用addView动态添加组件

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352

推荐阅读更多精彩内容