编辑:似乎问题在于,以编程方式创建新的ImageView并在构造函数中提供样式实际上是行不通的,就像所描述的here一样。通过编程添加样式的所有单独属性可以解决此问题,但是如果有人确实找到了更简洁的解决方案,还是会非常感激的。
原始问题
与本网站上的许多其他问题一样,我正在尝试以编程方式将图像添加到TableLayout中。表中的第一张图片已经包含在活动的xml中,并且显示良好。我希望所有新图像都具有相同的样式,但是当我尝试通过代码添加它们时,它们根本不会显示。我尝试了几种代码变体,但似乎没有一个起作用。这是当前版本的相关部分:
TableLayout picturesTable = findViewById(R.id.pictures_table);
currentPicture.setImageURI(uri);
TableRow lastRow = (TableRow) picturesTable.
getChildAt(picturesTable.getChildCount() - 1);
ImageView newPic = new ImageView(this, null, R.style.UploadPicture);
lastRow.addView(newPic);
相关样式:
<style name="UploadPicture">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">match_parent</item>
<item name="android:contentDescription">@string/empty_post_pic_description</item>
<item name="android:gravity">center_horizontal</item>
<item name="android:onClick">open_file_search</item>
<item name="android:layout_weight">1</item>
<item name="srcCompat">@drawable/pic_upload_plus</item>
</style>
TableLayout:
<TableLayout
android:id="@+id/pictures_table"
android:layout_width="330dp"
android:layout_height="0dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="100dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.51"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/title">
<TableRow
android:layout_width="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<ImageView
android:id="@+id/pic_1"
style="@style/UploadPicture" />
</TableRow>
</TableLayout>
由于我的样式包含layout_width,layout_height和layout_weight的值,所以我真的不确定为什么第一张图片显示得很好,但是通过代码添加的图片却没有。
@ drawable / pic_upload_plus是有效的png,可以很好地显示第一张图片。