我必須加載一個圖像的圖像按鈕上create.I寫下面的代碼。圖像沒有加載時,它在UI.What我做錯了。這是我的主要活動,我在其他活動中繼承了這一點。無法加載imagebutton上創建方法的圖像
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_master_page);
TheContext = this;
ImageButton ThePosLogoL=(ImageButton)findViewById(R.id.btnposlogo);
ThePosLogoL.setBackgroundResource(R.drawable.smalllogo);
這裏是我的按鍵佈局
<ImageButton
android:id="@+id/btnposlogo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@null"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true" />
刪除的android:背景= 「@空」 – 2013-03-22 06:44:55