多个微调器,但 xml 中有一个
您好,请查看我的 xml 文件,非常直接和简单,
<TextView android:id="@+id/TextViewContactNamesTexting"
android:layout_height="wrap_content" android:layout_gravity="center_vertical"
android:text="name" android:layout_width="fill_parent"
android:textColor="@color/font" android:textSize="15sp"></TextView>
<Spinner android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_marginLeft="10px"
android:id="@+id/SpinnerNumTexting"></Spinner>
运行时有一个 textView 和一个 Spinner,我想根据 arrayList 生成尽可能多的文件。 我附上一张图片,它可以更好地解释我的想法。 有什么建议吗? 我知道如何适当地填充微调器,只是坚持生成多个:(
提前感谢...
Hi please look at my xml file, very straight and simple, one textView and one Spinner
<TextView android:id="@+id/TextViewContactNamesTexting"
android:layout_height="wrap_content" android:layout_gravity="center_vertical"
android:text="name" android:layout_width="fill_parent"
android:textColor="@color/font" android:textSize="15sp"></TextView>
<Spinner android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_marginLeft="10px"
android:id="@+id/SpinnerNumTexting"></Spinner>
in run time I would like to generate as many as I want depending on an arrayList.
I attach the picture which explains my thought better.
any suggestion?
I know how to fill the spinner appropriately, just stuck on generating more than one :(
thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 ListView 和 SimpleAdapter。快速 Google 搜索就会找到许多有关使用
SimpleAdapter
的教程。Use a ListView, with a SimpleAdapter. A quick Google search will turn up a number of tutorials on using a
SimpleAdapter
.