Gallery中的图片默认是居中显示的,但是在很多情况下我们需要它居左显示,这样做有一个简单方法,就是把Gallery的left设置为负多少,如下面的方法:
Drawable drawable=categoryItem.getCategorys().get(0).getImage();
DisplayMetrics metrics = new DisplayMetrics();
activity.getWindowManager().getDefaultDisplay().getMetrics(metrics);
MarginLayoutParams mlp=(MarginLayoutParams)gallery.getLayoutParams();
mlp.setMargins(-(metrics.widthPixels / 2 + drawable.getIntrinsicWidth()), mlp.topMargin,
mlp.rightMargin, mlp.bottomMargin);
gallery.setLayoutParams(mlp);
参考:http://stackoverflow.com/questions/10026845/gallery-view-is-not-starting-from-left
时间: 2024-12-24 10:22:15