我有一个按钮,当前在单击时为其分配了动画:
Button btn = (Button)findViewById(R.id.btn);
btn.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
v.startAnimation(animRotate);
}
});
以下是 XML 中的按钮示例:
<Button
android:id="@+id/btn"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:text="@string/btnText"
android:textColor="#ffffff"
android:textSize="18dp"
android:padding="12dp"
android:drawableTop="@drawable/btnIcon"
android:layout_weight="1" />
动画效果很好,但是按钮本身有一个文本值和一个可绘制值,我希望能够定位可绘制对象并仅对其进行动画处理。我已经在网上搜索了所有内容,所有内容似乎都是通过它们的 id 来定位对象,而没有任何背景/可绘制选择。
欢迎任何反馈,即使它只是告诉我它无法完成。
非常感谢。