Android布局设置layout_weight但是无效(比重、占比不起作用)

今天在写代码的时候,测试人员反馈一个bug,一个控件的高度失效了。视图层级类似于下面的代码,(问题代码)




    
    
        

        

        
    





真实境况是使用下面的方法加载的层级view

public View inflate(@LayoutRes int resource, @Nullable ViewGroup root, boolean attachToRoot)

然后我试了一下,设置固定高度android:layout_height="100dp"是有效果的,那么就排除了调用

public View inflate(@LayoutRes int resource, @Nullable ViewGroup root, boolean attachToRoot)

时设置root ==null的情况。
最后 终于找到了原因,原来是一时马虎,把根目录的
android:layout_height="wrap_content"改为android:layout_height="match_parent"



问题就解决了。 虽然这个问题没有多少原理性的知识,但是记录自己遇到的bug,以及解决bug,排查问题的思路。

你可能感兴趣的:(Android布局设置layout_weight但是无效(比重、占比不起作用))