2016-05-09 91 views
0

我使用hacky gridview,因爲我需要gridview來包裝scrollview中的內容,所以我使用了this site中的自定義Gridview。在preLollipop版本中一切正常,但在棒棒糖中沒有網格視圖內容的邊框。所以我設置瞭如下所示的垂直間距。gridview在前棒棒糖設備中水平重疊

<bazit.utils.WrapContentHeightGridView 
    android:id="@+id/four_items_gridView" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:numColumns="3" 
    android:gravity="center" 
    android:stretchMode="columnWidth" 
    android:verticalSpacing="@dimen/home_category_items" 
    android:horizontalSpacing="@dimen/home_category_items"> 

</bazit.utils.WrapContentHeightGridView> 

並使用卡片視圖與圖像中,但之後卡前重疊在棒棒糖版本設備。和cardviews轉向右一點。

overlapping cardviews

我用保證金爲cardview,但它無法正常工作。

回答

0

我找到了答案。 我的容器視圖設置爲RTL(從右到左)。我將其更改爲LTR,並解決了我的問題。