以编程方式将ImageView添加到TableLayout,可以通过以下步骤完成:
<TableLayout
android:id="@+id/myTableLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchColumns="*">
</TableLayout>
TableLayout tableLayout = findViewById(R.id.myTableLayout);
ImageView imageView = new ImageView(this);
imageView.setImageResource(R.drawable.my_image);
TableRow tableRow = new TableRow(this);
tableRow.addView(imageView);
tableLayout.addView(tableRow);
完成上述步骤后,ImageView将被成功添加到TableLayout中。你可以根据需要重复这些步骤来添加更多的ImageView或其他视图。
领取专属 10元无门槛券
手把手带您无忧上云