body {
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
.parent {
background:blue;
width:500px;
height:40px;
white-space: nowrap;
}
.first {
width:30%;
border:4px solid red;
display:inline-block;
}
.second {
width: 70%;
border:4px solid pink;
display: inline-block;
}
.child {
height:40px;
font-size:0px;
display:inline-block;
}
This is what i have to acheive
我必须制作一个包含Recyler View和Buttons的Bottomsheet Dialog,它必须始终显示在底部下方,但问题是当对话框扩展到屏幕高度时按钮才会显示。 我找到的一个解决方案是给回收者View静态的heaight,但我不想这样做。 是否有任何解决方案可以避免给回收器视图提供预定义的高度,以便我的按钮在对话框的底部始终可见?