Android dashed line drawable potential ICS bug

谁都会走 提交于 2019-12-18 10:40:27

问题


The following is a dashed line, defined as a ShapeDrawable in XML:

<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="line">

    <size
        android:height="2dp"
        android:width="700dp" />

    <stroke
        android:width="1dp"
        android:color="@android:color/black"
        android:dashWidth="1dp"
        android:dashGap="2dp" />

</shape>

This will draw a nice dotted line on several Gingerbread phones. On the Galaxy Nexus however, the dashes appear to be ignored and the shape is drawn as a contiguous line. Even more curious, an emulator running ICS will render it correctly with the dashes, it's just the physical device screwing up.

Am I missing something obvious? Or is this really a bug with Android 4.0? The line is used in several places. Here is an example ImageView:

<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="@dimen/observation_observe_side_margin"
    android:layout_marginRight="@dimen/observation_observe_side_margin"
    android:layout_marginTop="16dp"
    android:contentDescription="@string/dotted_line_description"
    android:src="@drawable/dotted_line" />

回答1:


This issue is logged here http://code.google.com/p/android/issues/detail?id=29944 Turning off hardware acceleration will show the dashed line.




回答2:


The issue logged at http://code.google.com/p/android/issues/detail?id=29944 has a comment of applying the following to your view:

view.setLayerType(View.LAYER_TYPE_SOFTWARE, null)

This worked for me.



来源:https://stackoverflow.com/questions/10843402/android-dashed-line-drawable-potential-ics-bug

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!