在代码中使用资源中的 VectorDrawable

Using VectorDrawable from resources in code

想问一下。从资源中使用 VectorDrawable 的正确方法是什么? 带有支持库 compile 'com.android.support:support-v4:25.1.1'

因为 getDrawable() 已弃用,当我使用 ContextCompat.getDrawable(this, R.drawable.ic_cancel_button); 来设置工具栏导航图像时

if(toolbar != null)
{
toolbar.setNavigationIcon(ContextCompat.getDrawable(this, R.drawable.ic_cancel_button));
}

发生错误。

Caused by: android.content.res.Resources$NotFoundException: File res/drawable/ic_cancel_button.xml from drawable resource ID #0x7f02005e

看看AppCompatResources.getDrawable(Context context, @DrawableRes int resId)