我有一个像这样的按钮:
<Button
android:id="@+id/button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:text="Button"
android:textColor="@color/my_gray" />
按下按钮后,文本颜色变为深灰色(“已按下”颜色)。我该如何防止这种情况?在按钮上按下我会button.setTextColor(R.color.my_gray);
重置颜色,但它没有效果。