本文介绍了Jetpack Compose ClipToPadding的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道我可以像这样向小部件添加填充
I understand that i can add padding to a widget like so
LazyColumn(
modifier = Modifier.padding(0.dp, 0.dp, 0.dp, 10.dp),
content = {
items(items.size) { index ->
EmergencyContactComposeItem(emergencyContact = items[index])
}
}
)
但是我如何产生与clipToPadding=false"相同的结果
But how do i produce the same result as "clipToPadding=false"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:clipToPadding="false"
android:paddingBottom="25dp">
视图/小部件在何处不会裁剪填充,但仍强制执行边界?
Where the view / widget will not clip the padding, but still enforce the bounds?
推荐答案
尝试如下填充内容:
LazyColumn(
contentPadding = PaddingValues(bottom=10.dp),
){
items(items.size) { index ->
EmergencyContactComposeItem(emergencyContact = items[index])
}
}
这篇关于Jetpack Compose ClipToPadding的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!