如何将分隔符放在Android列表视图中的特定位置

Aam*_*han 5 android android-widget android-layout

我需要创建一个列表视图,我希望在某个位置只有一个分隔符,而不是在每个列表项之后.我正在使用自定义列表视图.

有这个问题的解决方案吗?

Man*_*mar 3

你可以在列表适配器类中添加这个 xml 文件,例如

ItemsAdapter ItemsAdapter = new ItemsAdapter(EnterpriseFertilisersScreen.this,
                R.layout.list, Constant.FERTILIZERMANAGERARRAY);
Run Code Online (Sandbox Code Playgroud)

R.layout.“xml 文件下方”并用户作为进一步的白色。


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="2dp"

    android:background="@color/list_bg" >

    <TextView
        android:id="@+id/post"
        android:layout_width="wrap_content"
        android:layout_height="50dp"
        android:layout_marginLeft="7dp"
        android:layout_toRightOf="@+id/bite_image"
        android:gravity="center_vertical"
        android:textColor="@android:color/white"
        android:textSize="20sp" />

</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)

如果您还有其他问题,请随时询问..