2013-01-23 198 views
1

外面有移動屏幕邊界之外的整個屏幕內容的方式,標題欄和所有,左邊的例子,我想屏幕內容移動到左側屏幕的Android

content = ((LinearLayout) act.findViewById(android.R.id.content) 
       .getParent()); 

到讓屏幕內容和邊距添加到它

FrameLayout.LayoutParams pr = (android.widget.FrameLayout.LayoutParams) content 
        .getLayoutParams(); 
      pr.rightMargin = xOffset; 
      content.setLayoutParams(pr); 

,但它不工作,保證金出現,但內容不移動只是調整大小以適應屏幕,任何人都知道該怎麼做這個簡單的方法是什麼?

+0

,如果你得到了答案+1我。 – skygeek

回答

1

可以設置在負緣( - )值。 例如,如果您想佈局移動上使用這樣的:

android:marginTop = "-50dip or more u can put" 
+0

我設法通過將margin設置爲left = -offset,margin right = offset – user924941

相關問題