-1

我正在开发一个基于客户端-服务器应用程序的应用程序。我正在使用 tablelayout,并在 tablelayout 中添加一些文本视图,编辑文本和图像(用于单击)。我的截图如下:在此处输入图像描述

正如您在我的图片中看到的那样,添加按钮模糊。它只是一个 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"/>

我能做些什么来阻止这个图像的模糊?

4

1 回答 1

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
于 2013-09-24T09:22:02.830 回答