1

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 文件的引用?

提前致谢

4

2 回答 2

2

您是否收到找不到资源的错误?如果是这样,请尝试清理项目并重新运行。

于 2012-02-21T21:15:29.907 回答
1

如果是您的项目 R 类而不是 android.R ,您是否检查了导入?这可能发生:-)

二湾

于 2012-02-21T21:41:00.450 回答