添加视图之后刷新的LinearLayout [英] Refreshing a LinearLayout after adding a view

查看:1696
本文介绍了添加视图之后刷新的LinearLayout的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

喜    我想动态添加意见到的LinearLayout。 我通过getChildCount(),该意见被添加到布局看,但即使调用无效()上的布局不给我孩子的出现了。

Hi I'm trying to add views dynamically to a linearlayout. I see through getChildCount() that the views are added to the layout, but even calling invalidate() on the layout doesn't give me the childs showed up.

我缺少的东西?

推荐答案

一对夫妇的事情,你可以检查你的code:

A couple of things you can check in your code:

  • 视图将被加入,检查是否调用它的<一个href="http://developer.android.com/reference/android/view/View.html#setLayoutParams%28android.view.ViewGroup.LayoutParams%29">setLayoutParameter方法用合适的<一href="http://developer.android.com/reference/android/view/ViewGroup.LayoutParams.html">ViewGroup.LayoutParameter.
  • 当你添加新的视图 S,确保你正在做它的UI线。要做到这一点,你可以使用父视图的<一个href="http://developer.android.com/reference/android/view/View.html#post%28java.lang.Runnable%29">post方法
  • On the View that is being added, check that you call its setLayoutParameter method with an appropriate ViewGroup.LayoutParameter.
  • When you adding the new Views, make sure you are doing it on the UI thread. To do this, you can use the parent View's post method.

这自给自足的示例将一个 TextView的启动时短暂的延迟后:

This self contained example adds a TextView after a short delay when it starts:

import java.util.Timer;
import java.util.TimerTask;

import android.app.Activity;
import android.os.Bundle;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.TextView;

public class ProgrammticView extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        final LinearLayout layout = new LinearLayout(this);
        layout.setLayoutParams(new ViewGroup.LayoutParams(
                ViewGroup.LayoutParams.FILL_PARENT,
                ViewGroup.LayoutParams.FILL_PARENT));

        setContentView(layout);

        // This is just going to programatically add a view after a short delay.
        Timer timing = new Timer();
        timing.schedule(new TimerTask() {

            @Override
            public void run() {
                final TextView child = new TextView(ProgrammticView.this);
                child.setText("Hello World!");
                child.setLayoutParams(new ViewGroup.LayoutParams(
                        ViewGroup.LayoutParams.FILL_PARENT,
                        ViewGroup.LayoutParams.WRAP_CONTENT));

                // When adding another view, make sure you do it on the UI
                // thread.
                layout.post(new Runnable() {

                    public void run() {
                        layout.addView(child);
                    }
                });
            }
        }, 5000);
    }
}

这篇关于添加视图之后刷新的LinearLayout的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆