我有以下 my_layout.xml 布局
<TableLayout android:id="@+id/tlTable" android:layout_width="match_parent" android:layout_height="wrap_content" android:stretchColumns="1,2" android:layout_marginTop="20dp" >
<TableRow android:id="@+id/trRow" android:layout_width="wrap_content" android:layout_height="wrap_content">
<TextView android:id="@+id/tv1" style="@style/showtext_style" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Row1" android:layout_marginRight="5dp"/>
<ProgressBar android:id="@+id/p2" style="?android:attr/progressBarStyleHorizontal" android:progressDrawable="@drawable/greenprogress" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="5dp" />
<TextView android:id="@+id/tv3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="0" />
</TableRow >
</TableLayout>
我想动态创建 10 行,其中所有行都是第一行的克隆,除了每行(即 tv1)的第一个 textview 的文本要更改为具有行号。所以它将是 Row1, Row2 , Row3 .....Row10
我怎样才能做到这一点?