我已經動態添加了一個RelativeLayout和ImageView,但是當我運行該應用程序時,它不會顯示在模擬器中。爲什麼?如何在Android上顯示RelativeLayout和ImageView?
我的代碼:
RelativeLayout relativeLayout = new RelativeLayout(this);
RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.WRAP_CONTENT,
RelativeLayout.LayoutParams.WRAP_CONTENT);
ImageView iv = new ImageView(this);
iv.setImageResource(R.drawable.freshface_mmm);
relativeLayout.addView(iv,lp);
你在哪裏添加/顯示了這個RelativeLayout?代碼請將 –
加入我的活動。 – Napster