码迷,mamicode.com
首页 > 其他好文 > 详细

使Gallery时设置居左显示

时间:2014-10-13 22:37:37      阅读:207      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!