我正在使用http://lucasr.org/2013/02/21/introducing-twowayview/ Library for Horizontal Scroll View。
我需要在项目之间设置分隔符高度。
<org.lucasr.twowayview.TwoWayView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/scroller_attached_images"
style="@style/TwoWayView"
android:layout_width="fill_parent"
android:layout_height="200dp"
android:layout_below="@id/editMessage"
android:drawSelectorOnTop="false"
android:focusable="false"
tools:context=".MainActivity"
android:divider="@android:color/transparent"
android:dividerHeight="10.0sp"/>
这不起作用。有人可以帮帮我吗?
此致 希瓦
答案 0 :(得分:6)
现在可能已经太晚了,但您可以使用setItemMargin在代码中执行此操作:
TwoWayView listView = (TwoWayView) findViewById(R.id.scroller_attached_images);
listView.setItemMargin(10);
答案 1 :(得分:0)
来自示例项目:
final Drawable divider = getResources().getDrawable(R.drawable.divider);
mRecyclerView.addItemDecoration(new DividerItemDecoration(divider));
drawables / divider.xml是:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#cccccc"/>
<size android:width="2dp"
android:height="2dp" />
</shape>