我有自定义列表视图项布局。此布局的根项目具有10dp填充,但是当我在设备上加载列表时,项目之间没有空格。在我的情况下,它意味着填充不适用于根项目。你知道为什么会这样吗?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rootLL"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:padding="10dp"
android:orientation="horizontal">
<com.hipo.volt.ui.custom.RoundedImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_margin="4dp"
android:visibility="gone" />
<com.hipo.volt.ui.custom.VoltTextView
style="@style/textview_dark_style"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="10dp"
android:padding="10dp" />
</LinearLayout>
由于