Imageview无法显示一条线?

时间:2014-09-15 23:05:32

标签: android image imageview line drawable

我有一条垂直线,这是一张图片。

我试图通过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);

除此之外,其他图像显示正确。你们有什么建议吗?提前谢谢。

1 个答案:

答案 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" />