我有一个布局,我必须包含几次。它由 aTextView
和 a组成ImageView
:
<ImageView
android:layout_width="wrap_content"
android:layout_height="40dp"
android:background="@drawable/back2"
android:id="@+id/id_1"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/id_2"
android:textSize="15dp"
android:typeface="sans"
android:textColor="#ffffff" />
现在我想以编程方式设置文本,但我面临的问题是,TextView
现在总是具有相同的 Id,因为我多次包含相同的布局。有没有办法以编程方式包含布局并始终更改每个包含布局的 Id?