gpt4 book ai didi

android - 是否可以在Android中删除子填充

转载 作者:行者123 更新时间:2023-12-05 00:18:03 24 4
gpt4 key购买 nike

我有一个线性布局。在家长看来,我已经定义了填充。但我想从 subview 中删除填充。是否可以删除中间 subview 填充?我知道一种解决方案是我需要单独提供填充。但我不想使用这个解决方案。所以任何替代解决方案。
布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tool="http://schemas.android.com/tools"
android:padding="16dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:id="@+id/header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:visibility="gone"
tool:text="Header text" />

<View
android:id="@+id/separator"
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_marginTop="10dp"
android:background="#cccccc"
android:visibility="gone"
app:layout_constraintTop_toBottomOf="@id/header" />

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/dialog_recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp" />

</LinearLayout>
上面的代码看起来像这样
enter image description here
预期产出
enter image description here

最佳答案

这可以在 LinearLayout 中添加

android:clipToPadding="false"
并在 View 中设置负水平边距:
android:layout_marginStart="-16dp"
android:layout_marginEnd="-16dp"
这是有效的,因为您有一个 LinearLayout,似乎除了 LinearLayout 和 RelativeLayout 之外的其他 ViewGroup 不支持负边距,因为这个答案说: https://stackoverflow.com/a/10673572/7794806

关于android - 是否可以在Android中删除子填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69887237/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com