我的应用程序的一个屏幕显示了一个包含 6 列的列表视图,第六个是包含用户创建的图片或草图的 imageView。这是 listView 行的代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingTop="2dp"
android:paddingBottom="2dp" >
<TextView android:id="@+id/surveyColumn1"
android:textSize="13sp"
android:layout_width="0dip"
android:layout_weight="0.105"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/surveyColumn2"
android:textSize="13sp"
android:layout_width="0dip"
android:layout_weight="0.137"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/surveyColumn3"
android:textSize="12sp"
android:layout_width="0dip"
android:layout_weight="0.25"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/surveyColumn4"
android:textSize="13sp"
android:layout_width="0dip"
android:layout_weight="0.153"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/surveyColumn5"
android:textSize="13sp"
android:layout_width="0dip"
android:layout_weight="0.153"
android:layout_height="wrap_content"/>
<ImageView android:id="@+id/surveyColumn6"
android:layout_width="0dip"
android:layout_weight="0.202"
android:layout_height="wrap_content"
android:paddingTop="0dp"
android:paddingBottom="0dp"
android:scaleType="centerInside"
android:layout_gravity="center"
android:contentDescription="@string/pictureHeader"/>
</LinearLayout>
这种设置效果很好,除了一种情况:显示的图像是相机拍摄的垂直方向的照片。在这种情况下,列表视图会在行内图像的上方和下方抛出一堆空白区域。在活动中,我使用 custumViewBinder 使用从这里获得的代码将图像显示为位图:http: //developer.android.com/training/displaying-bitmaps/load-bitmap.html
我发现摆脱空间的唯一方法是为 imageView 设置一个静态高度,我不想这样做,因为有些行没有图像。任何能弄清楚发生了什么的人都是我的英雄。
编辑:这是我调用以将图像显示为位图的类:
public class customBitmap {
public customBitmap(String pathName, int width, int height, ImageView view) {
final BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(pathName, options);
options.inSampleSize = calculateInSampleSize(options, width, height);
options.inJustDecodeBounds = false;
Bitmap bitmap = BitmapFactory.decodeFile(pathName, options);
//Check if bitmap was created; if so, display it in the imageView
if(bitmap == null)
Log.w("UI Thread", "Null bitmap at moto.sitesurvey.customBitmap:35");
else
view.setImageBitmap(bitmap);
}
public int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight){
final int height = options.outHeight;
final int width = options.outWidth;
int inSampleSize = 1;
if(height > reqHeight || width > reqWidth) {
if(width > height)
inSampleSize = Math.round((float)height / (float)reqHeight);
else
inSampleSize = Math.round((float)width / (float)reqWidth);
}
return inSampleSize;
}
}
在活动中,我为宽度和高度传递了 200 和 150 的值。我的问题似乎是,当我几个月前最初编写此代码时,我只将它设计为适用于横向图片,现在它也需要适用于纵向图片。