当前位置: 代码迷 >> Android >> android:layout_marginRight解决方案
  详细解决方案

android:layout_marginRight解决方案

热度:52   发布时间:2016-05-01 21:32:58.0
android:layout_marginRight
这个android:layout_marginRight="24dip"
参数为什么不 是绝对的?
我意思是它与父布局右边的距离总是>=24dip,有什么别的参数可以保证只为24dip吗?
就像layout_marginLeft="24dip"一样,始终和父布局左边的距离为24dip

------解决方案--------------------
android:layout_alignParentRight 如果该值为true,则将该控件的右边与父控件的右边对齐
试下将该控件的上述属性设置为true
------解决方案--------------------
同意1楼的方法。也可以在该控件件里添加 android:layout_gravity="right"。思路就是首先要保证这个控件在父布局中是靠右的,这样再使用android:layout_marginRight="24dip"。
  相关解决方案