我正在使用ViewPager使用Picasso从服务器加载图像。我看到实际图像下方的空白。当我用空格刷区域时,图像被刷过。 我已将 scaleType =" fitXy" 设置为伸展到ImageView的大小。下面是xml布局和代码。 请不要将其标记为重复。我用谷歌搜索它,解决方案对我没有帮助。
w320dp-xhdpi中的@ dimen / viewpager_img = 150dp
amblnce_display.xml:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:id="@+id/amblnce_dsp_lyt"
>
<android.support.v4.view.ViewPager
android:layout_width="match_parent"
android:layout_height="@dimen/viewpager_img"
android:id="@+id/pager"
>
</android.support.v4.view.ViewPager>
view_pager_lyt.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="match_parent"
android:layout_height="@dimen/viewpager_img"
android:id="@+id/image1"
android:scaleType="fitXY"
/>
</LinearLayout>
ImagePagerAdapter.java:
public class ImagePagerAdapter extends PagerAdapter {
public ImagePagerAdapter(Context context,String ctgry){
if (category.equalsIgnoreCase("Ambulance")){
count=AmbulanceDisplayData.getInstance().imagecount();
}
layoutInflater=(LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
@Override
public int getCount() {
Log.e("Count",Integer.toString(count));
return count;
}
@Override
public Object instantiateItem(ViewGroup container, int position) {
view=layoutInflater.inflate(R.layout.view_pager_lyt,container,false);
linearLayout=(LinearLayout) view.findViewById(R.id.pgr_lyt);
imageView=(ImageView) view.findViewById(R.id.image1);
if (category.equalsIgnoreCase("Ambulance"))
{
count= ambulanceDisplayData.getInstance().imagecount();
images =ambulanceDisplayData.getInstance().getArrayList();
if(count!=0)
{
Log.e("Images", (String) images.get(position));
Picasso.with(context).load("http://abcd.com/xyz/"+(String) images.get(position))
.placeholder(R.drawable.noimage)
.fit().into(imageView);
}
}
container.addView(view);
return view;
}
@Override
public void destroyItem(ViewGroup container, int position, Object object) {
container.removeView((View)object);
}
@Override
public boolean isViewFromObject(View view, Object object) {
if(view==object){
return true;
}
else {
return false;
}
}}
答案 0 :(得分:1)
您应该设置 match_parent 。
硬编码值导致此处出现问题。
MATCH_PARENT表示视图要与其父视图一样大, 减去父母的填充。
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/image1"
android:adjustViewBounds="true"
android:scaleType="fitXY"
/>
答案 1 :(得分:0)
添加 android:adjustViewBounds =&#34; true&#34; 赞
<ImageView
android:layout_width="match_parent"
android:layout_height="@dimen/viewpager_img"
android:id="@+id/image1"
android:adjustViewBounds="true"
android:scaleType="fitXY"
/>