我无法在api级别15进行硬件加速

时间:2017-11-10 02:13:43

标签: android hardware-acceleration android-api-levels

我正在测试一个在android上加速的简单硬件。

我在互联网上找到了这个代码,所以我想测试一下。当我在API级别26测试此代码时,它可以正常工作,但是当我在API级别15测试时,这是相同的avd,它不起作用。

这是我的清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.shin.myapplication">

<application
    android:hardwareAccelerated="true"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

和MainActivity。

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //setContentView(R.layout.acceltest1);
    AccelTestView vw = new AccelTestView(this);
    setContentView(vw);
}

这是AccelTestView代码

public class AccelTestView extends View {

public AccelTestView(Context context) {
    super(context);
}

public void onDraw(Canvas canvas) {
    Log.v("temp", String.valueOf(canvas.isHardwareAccelerated()));
    invalidate();
}

Here is API Level 15 Image

And here is API Level 26 Image

这两个图像是相同的代码,相同的avd是Nexus 5x。

为什么会这样?

1 个答案:

答案 0 :(得分:0)

请阅读:

https://developer.android.com/guide/topics/graphics/hardware-accel.html#unsupported

从图表中可以看出setAntiAlias的硬件加速在用于行的API 16和用于文本的API 18之前不可用。