0

例子:

主要线性布局

|子线性布局|列表视图 |

ListView 有一组名称,它们会更改子线性布局的内容。现在我的主 LL 中有子 LL。如何正确添加 ListView,使用

arraylist<string> ar

但我不知道如何正确使用列表适配器。

另一个问题:我可以每隔几秒用一个线程更新列表视图的内容吗?

4

1 回答 1

0

试试这个,每隔几秒更新一次。

handler=new Handler();
            final Runnable r = new Runnable()
            {
                public void run() 
                {
                    //Write your code here

                    handler.postDelayed(this, 100);
                }
            };

            handler.postDelayed(r,100);
于 2013-03-27T10:22:04.033 回答