外面有移動屏幕邊界之外的整個屏幕內容的方式,標題欄和所有,左邊的例子,我想屏幕內容移動到左側屏幕的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);
,但它不工作,保證金出現,但內容不移動只是調整大小以適應屏幕,任何人都知道該怎麼做這個簡單的方法是什麼?
,如果你得到了答案+1我。 – skygeek