我正在尝试按照Android开发人员指南/教程实现基本的GridView库。
网格中的ImageViews是从用户相机拍摄的位图。
除了我的图像非常小之外,这种方法很好。
我的xml:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnWidth="90dp"
android:numColumns="auto_fit"
android:verticalSpacing="10dp"
android:horizontalSpacing="10dp"
android:stretchMode="columnWidth"
android:gravity="center"
/>
</LinearLayout>
我的ImageAdapter
public class ImageAdapter extends BaseAdapter {
private Context mContext;
private ArrayList<Bitmap> imgs;
public ImageAdapter(Context c, ArrayList<Bitmap> arrayList) {
mContext = c;
imgs = arrayList;
}
public int getCount() {
return imgs.size();
}
public Object getItem(int position) {
return null;
}
public long getItemId(int position) {
return 0;
}
// create a new ImageView for each item referenced by the Adapter
public View getView(int position, View convertView, ViewGroup parent) {
ImageView imageView;
if (convertView == null) {
// if it's not recycled, initialize some attributes
imageView = new ImageView(mContext);
imageView.setLayoutParams(new GridView.LayoutParams(85, 85));
imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
imageView.setPadding(8, 8, 8, 8);
} else {
imageView = (ImageView) convertView;
}
imageView.setImageBitmap(imgs.get(position));
return imageView;
}
}
我已经尝试了各种方法来解决这个问题,但唯一可行的方法是将ImageView的布局参数调整为大量数字(例如GridView.LayoutParams(300, 300)
)。
但是,即使我这样做,我的图像仍然相对较小(即远不及300dp x 300dp)。
知道我做错了吗?
答案 0 :(得分:2)
将此参数放入ImageView。
android:adjustViewBounds="true"
你也可以看到这一点。
答案 1 :(得分:2)
将我的适配器中的布局参数设置为GridView.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT))
设法解决问题。
答案 2 :(得分:0)
尝试更改更大的尺寸:
android:columnWidth="90dp"
答案 3 :(得分:0)
你应该接受
的答案android:adjustViewBounds="true"
这意味着什么?它会拉伸您的图像以适应图像视图的高度和宽度,因此它们不会小,但为什么您不想使用
android:ScaleType="fitXY"?
因为第一个选项调整了图像的比例,所以它不会失去质量,第二个选项会延伸它并且它会失去质量! 重要提示:请注意,如果图像太小,调整选项将无法正常工作,因为它必须保存图像比例,因此一切都取决于您想要使用的内容!
答案 4 :(得分:0)
问题是new GridView.LayoutParams()
期望args以像素为单位。
因此,您需要先将dp从dp转换为像素。