图像水平拉伸

时间:2013-09-24 09:01:33

标签: android image uiview

我正在开发基于客户端 - 服务器应用程序的应用程序。我正在使用tablelayout,并在tablelayout中添加一些textview,编辑文本和图像(单击)。我的屏幕截图如下:enter image description here

正如您在我的图片中看到的那样添加按钮模糊。它只是一个3kb的文件。

     final ImageView img_add_icon = new ImageView(MainScreen.this);
    img_add_icon.setBackgroundResource(R.drawable.add_item_order);

我的xml文件是:

     <ImageView
                    android:id="@+id/add_to_order_id"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content" 
                    android:layout_margin="2dip"/>

如何阻止此图像模糊?

1 个答案:

答案 0 :(得分:0)

Please Use 

    setImageResource(resId)

    to Sets a drawable as the content of this ImageView. 

    To Control how the image should be resized or moved to match the size of this ImageView
    use 

    setScaleType(ImageView.ScaleType scaleType)


  [1]: http://developer.android.com/reference/android/widget/ImageView.html#setImageResource%28int%29
  [2]: http://developer.android.com/reference/android/widget/ImageView.html#setScaleType%28android.widget.ImageView.ScaleType%29