Android LineaerLayout中layout_margin失效不起作用的解决方法


Android LineaerLayout中layout_margin失效不起作用的解决方法:

  1. <LinearLayout  
  2.     android:id="@+id/main"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="wrap_content"  
  5.     android:layout_margin="20dp"  
  6.     android:orientation="vertical">  

上面这种做法在某些Android版本放到scrollview或者RelativeLayou里面的话,layout_margin会失效,不起作用!

网上没找到相关解决方案,只能自己摸索,设置各种属性,最后终于解决:

在属性里面加入android:layout_gravity="top",问题就解决了,我觉得这个是android的一个bug。

相关内容