ImageButton
我的 xml 布局中有一个这样的:
<ImageButton android:id="@+id/tabsButton"
android:background="@drawable/button" android:layout_height="48dp"
android:layout_width="48dp"></ImageButton>
如您所见,我在这里设置了 ImageButton 的背景:
android:background="@drawable/button"
其中 button 是我放在 drawable 文件夹中的一个 xml 文件,下面是 button.xml 的代码:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
android:drawable="@drawable/duscrollover" /> <!-- pressed -->
<item android:drawable="@android:color/transparent" /> <!-- default -->
</selector>
直到现在,一切都很好并且工作正常,但现在我想在我的创建中以编程方式设置我的 ImageButton 的背景,所以我这样做了:
View myView = findViewById(R.id.tabsButton);
myView.setBackgroundResource(R.drawable.button);
但是,它无法识别 myView.setBackgroundResource(R.drawable.button) 中的按钮 那么如何获取对放置在可绘制文件夹中的 xml 文件的引用?
提前致谢