我有一条垂直线,这是一张图片。
我试图通过imageview显示它,但它没有显示。 这是我的imageview布局:
<ImageView
android:id="@+id/game_row_bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center" />
在我的代码中,我称之为:
Drawable image = r.getDrawable(R.drawable.line);
ImageView line = (ImageView) view.findViewById(R.id.display_line);
line.setImageDrawable(image);
除此之外,其他图像显示正确。你们有什么建议吗?提前谢谢。
答案 0 :(得分:0)
您是否尝试在ImageView上使用adjustViewBounds属性?
<ImageView
android:id="@+id/game_row_bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:adjustViewBounds="true" />