2014-01-06 84 views
2

我正在使用http://lucasr.org/2013/02/21/introducing-twowayview/庫進行水平滾動視圖。在TwoWayView Android庫中設置分隔線高度

我需要設置項目之間的分隔高度。

<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"/> 

這沒有用。誰能幫幫我嗎 ?

問候, 西瓦

回答

6

也許,這就是現在爲時已晚,但可以使用setItemMargin在代碼中做到這一點:

TwoWayView listView = (TwoWayView) findViewById(R.id.scroller_attached_images); 
listView.setItemMargin(10); 
+0

你知道如何設置分隔線的顏色嗎? – ademar111190

0

從樣本項目:

final Drawable divider = getResources().getDrawable(R.drawable.divider); 
mRecyclerView.addItemDecoration(new DividerItemDecoration(divider)); 

凡可繪製/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>