所以我有一个divider.xml
<?xml version="1.0" encoding="utf-8" ?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/red"/>
</shape>
我的观点如下:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Mvx.MvxListView
android:id="@+id/suppliersListView"
android:divider="@drawable/divider"
android:scrollbars="vertical"
android:choiceMode="singleChoice"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="left|start"
local:MvxItemTemplate="@layout/item_supplier"
local:MvxBind="ItemsSource ReceptionSuppliersList; ItemClick ReceptionBasicInformationSelectCommand"/>
</LinearLayout>
在因此,当我运行视图时,它显示为这样,我的第2个,第4个等...行更加突出显示第1个元素和第2个元素之间的线。
任何想法为什么?
答案 0 :(得分:3)
这是模拟器的典型行为。在绘制线条或点等微小物体时会丢失一些像素。
在真实设备上启动您的应用,它应该可以正常运行。
答案 1 :(得分:1)
在Listview
中添加以下属性并在android:divider
中使用您喜欢的颜色并将透明色放在android:cacheColorHint
中,如下所示:
android:divider="#00000000"
android:cacheColorHint="#00000000"
android:fadingEdge="none"