我正在尝试绘制虚线/虚线水平线。在我的桌子上(Android 4.0.4),它显示了我想要的方式,在我的Galaxy Nexus(Android 4.2.2)上显示为实线。这是Android 4.2.2中的错误还是我做错了?如果您想知道,我会在搜索此错误的原因时将代码修剪到最低限度。
以下是代码:
package com.aschenbrenner.dashlinetest;
import android.app.Activity; import android.os.Bundle;
公共类MainActivity扩展了Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
line drawable dashes.xmlt:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line">
<stroke android:width="5dip" android:color="#f5dcb2" android:dashWidth="2dip" android:dashGap="20dip"/>
</shape>
布局activity_main.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<ImageView
android:layout_width="match_parent"
android:layout_height="20dip"
android:src="@drawable/dashes"/>
答案 0 :(得分:0)
我想我遇到过这个问题,但我不记得什么时候了。
我发现了这个问题:
https://code.google.com/p/android/issues/detail?id=29944
基本上你必须关闭硬件加速。这有用吗?