只有最后一个分隔符可见。中间和第一个是看不见的。关于三星sIII 4.3和LG optimus G一切都很好。
我试图以编程方式设置分隔符,但最后只显示
LinearLayoutBuyTypes.setShowDividers(LinearLayout.SHOW_DIVIDER_MIDDLE | LinearLayout.SHOW_DIVIDER_BEGINNING | LinearLayout.SHOW_DIVIDER_END);
在xml中:
<LinearLayout
android:id="@+id/LinearLayoutBuyTypes"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/color_main_background"
android:divider="@drawable/delimiter_smooth_text_list_view"
android:orientation="vertical"
android:showDividers="beginning|middle|end"
>
</LinearLayout>
如何显示中间和第一个分隔符?