##取得方法
###res/drawable/sample.xmlからdrawableを取得する
java
Drawable drawableButtonNext = ResourcesCompat.getDrawable(getResources(), R.drawable.sample, null);
sample.xml
<?xml version="1.0" encoding="utf-8"?>
<shape android:shape="rectangle">
<solid android:color="#000000" />
<corners android:radius="5dp" />
</shape>