我想获取按钮背景图像的生成 ID。该星形图像来自drawable;我想获取其生成的 ID。
我知道.getId
会得到按钮的特定 ID,但是后台资源的 ID 是我想要得到的。没有这样的事情button.getBackground().getId()
<Button
android:id="@+id/btnhgfavorite"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/star"
android:focusable="false"/>