android 相对布局覆盖问题

坚强是说给别人听的谎言 提交于 2019-11-27 01:37:33

线性布局下有两个相对布局

当第一个相对布局如下: 

 

<RelativeLayout android:id="@+id/silentLayout"
        android:layout_width="match_parent"
     android:layout_height="40dp"
     android:orientation="vertical" >
     

 

  当   android:layout_height="40dp"  变为  android:layout_height="match_parent"

的时候第二个线性布局就会被第一个线性布局覆盖。

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!