我制作了这个 XML 文件来自定义一个按钮
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners android:radius="10dip" />
<gradient
android:angle="90"
android:centerColor="#0043E1"
android:centerY="0.4"
android:endColor="#6495ED"
android:startColor="#6495ED"
android:type="linear" />
</shape>
我应该添加什么来使状态成为焦点并按下?按下状态的渐变颜色,以及聚焦状态的另一种颜色?