मेरे पास ए GridView
। का डेटा GridView
सर्वर से अनुरोध है।
यहाँ आइटम लेआउट इस प्रकार है GridView
:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/analysis_micon_bg"
android:gravity="center_horizontal"
android:orientation="vertical"
android:paddingBottom="@dimen/half_activity_vertical_margin"
android:paddingLeft="@dimen/half_activity_horizontal_margin"
android:paddingRight="@dimen/half_activity_horizontal_margin"
android:paddingTop="@dimen/half_activity_vertical_margin" >
<ImageView
android:id="@+id/ranking_prod_pic"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:contentDescription="@string/app_name"
android:scaleType="centerCrop" />
<TextView
android:id="@+id/ranking_rank_num"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/ranking_prod_num"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/ranking_prod_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
मैं सर्वर से डेटा का अनुरोध करता हूं, छवि यूआरएल और लोड छवि प्राप्त करता हूं Bitmap
public static Bitmap loadBitmapFromInputStream(InputStream is) {
return BitmapFactory.decodeStream(is);
}
public static Bitmap loadBitmapFromHttpUrl(String url) {
try {
return loadBitmapFromInputStream((InputStream) (new URL(url).getContent()));
} catch (Exception e) {
Log.e(TAG, e.getMessage());
return null;
}
}
और getView(int position, View convertView, ViewGroup parent)
एडॉप्टर में विधि का कोड है
Bitmap bitmap = BitmapUtil.loadBitmapFromHttpUrl(product.getHttpUrl());
prodImg.setImageBitmap(bitmap);
छवि का आकार है 210*210
। मैं अपने नेक्सस 4 पर अपना एप्लिकेशन चलाता हूं। छवि ImageView
चौड़ाई को भरती है , लेकिन ImageView
ऊंचाई पैमाने पर नहीं होती है। ImageView
पूरी छवि नहीं दिखाता है।
मैं इस समस्या का समाधान कैसे कर सकता हूं।