如何在android中动态显示TextView数组?
我想显示 26 个文本视图。如何在android中动态显示TextView数组?
I want to display 26 textviews. How to display an array of TextViews in android dynamically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建一个 xml 布局,其中包含一个滚动视图,其中包含一个垂直方向的线性布局。
在 Activity 中,使用 findViewById 函数获取线性布局。
运行 for 循环以创建包含相关文本的文本视图,并继续
在此 LinearLayout 上调用 addView 方法。
Create an xml layout which consist of a scrollview containing a linearlayout with orientation vertical.
In the activity, get the linear layout by using findViewById function.
Run a for loop to create a textview with relevant text and continue calling
addView method on this LinearLayout.
请参阅下面的代码
,但这种类型的设计不好,而是尝试将 ListView 与 CustomAdapters 一起使用。
see the bellow code
but this type of design is not good,instead try to use ListView with CustomAdapters.