我正在开发一个基于客户端-服务器应用程序的应用程序。我正在使用 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"/>
我能做些什么来阻止这个图像的模糊?