标签:style http color io ar sp div art on
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);
使Gallery时设置居左显示
标签:style http color io ar sp div art on
原文地址:http://blog.csdn.net/wode_dream/article/details/40050223