首页 > 代码库 > 使Gallery时设置居左显示
使Gallery时设置居左显示
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
使Gallery时设置居左显示
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。