こんにちは、ボタンの背景を設定するためのリソースを描画できる 1 つの Android アプリケーションを開発しています。そのドローアブルの開始色と終了色をプログラムで変更したい、つまりボタンクリックリスナー内のアクティビティクラスで変更したい。私のドローアブルは次のようになります:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="#be584c"
android:endColor="#be584c"
android:angle="270" />
<corners android:radius="2dp" />
<stroke android:width="1px"/>
</shape>
そして、xmlファイルでボタンの背景として設定しました。android:background="@drawable/download_button"
そして、アクティビティクラスでこのdrawableの開始色と終了色を変更したいのですが、これを行う方法. f=これを行う方法はありますか。助けが必要。ありがとうございました。