我創建了一個應用程序的PageController並在其自己的線性佈局增加它在我的網頁上。 但是,我不能讓佈局寬度以填充整個父頁面.. 這是我的代碼:
pagecontrol = new LinearLayout(this.context);
pagecontrol.setOrientation(LinearLayout.HORIZONTAL);
pagecontrol.setGravity(Gravity.CENTER_HORIZONTAL);
params = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,
LayoutParams.FILL_PARENT);
pagecontrol.addView(btn,params);
public LinearLayout getView() {
return pagecontrol;
}
我重視的頁面截圖。任何人都可以請指教?
在此先感謝。
我試過這個,但是,我使用的圖像資源得到延伸:( – user788511 2012-04-19 05:11:49
我以前試過,但我的背景圖像資源被拉長了 – user788511 2012-04-19 05:29:52
你嘗試過使用'android:layout_margin'嗎? – 2012-04-19 05:47:26