2014-02-12 68 views
1

我正在显示我的应用程序的用户的Google plus个人资料图片,但图像模糊不清。我减小了尺寸,这使得几乎不可能识别其中的任何人。有一种方法可以解决这个问题。我从Url获​​取图像。 这是我的ImageView以下方式在Android应用程序中模糊的个人资料图片

<ImageView 
    android:id="@+id/profilePicture" 
    android:layout_width="200dp" 
    android:layout_height="200dp" 
    android:contentDescription="hello" 
    android:maxHeight="200dp" 
    android:maxWidth="200dp" /> 

回答

0

尝试显示图像,

<ImageView 
    android:id="@+id/profilePicture" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:contentDescription="hello" 
    android:maxHeight="200dp" 
    android:maxWidth="200dp" /> 
+0

很抱歉,但是这并没有帮助。 –

+0

为什么?它有什么问题?你能解释一下吗? – user3291365

+0

它将图片显示为无法放大的小图片。 –

相关问题