是否可以在不使用android中的list-view的情况下以列表格式显示一些文本数据?

时间:2013-08-23 07:27:35

标签: android

场景:我有两个页面,第一页包含一个编辑文本框和一个按钮。单击该按钮后,该编辑文本中的值将显示在第二页上。从第二个屏幕点击后退后,它将导航到第一页并开始相同的过程。 这里的要求是我需要以列表格式显示数据而不使用android中的list-view。这有可能吗?如果是这样的话?

建议请..

感谢您宝贵的时间!...

1 个答案:

答案 0 :(得分:1)

使用垂直方向的LinearLayout

<LinearLayout
   id="@+id/myownlist"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:background="@android:color/transparent"
   android:orientation="vertical" />

在代码中获取

LinearLayout myVeryOwnList = (LinearLayout)findViewById(R.id.myownlist);

在您自己的列表中添加文本视图。

for(int j = 0 ; j < TOTAL_ITEMS_YOU_HAVE ; j ++) {
   TextView tv = new TextView(this);
   myVeryOwnList.addView(tv);
}