我有Fragment
與ImageView
。如何在top系統android ActionBar
上顯示Fragment
?片段頂部安卓ActionBar
對於:Wottah ActionBar
應該是可見的。重疊應該是我的一部分。我們需要在這個使用的東西:如果你適應你的佈局風格,你可以隱藏行動起來吧,你不需要任何奇怪的結構,以把一個ImageView的在它上面這樣
ImageView view = new ImageView (getActivity());
view.setBackgroundColor (Color.GREEN);
WindowManager.LayoutParams p = new WindowManager.LayoutParams();
p.gravity = Gravity.TOP;
p.type = WindowManager.LayoutParams.TYPE_APPLICATION_PANEL;
p.token = view.getWindowToken();
WindowManager mWindowManager = (WindowManager) getActivity(). GetSystemService(Context.WINDOW_SERVICE);
mWindowManager.addView (view, p);
請定義你「片段之上Android系統動作條」的意思。 – CommonsWare
查看修訂後的問題。 – Tronum