優點
綁定組件方便,使用簡單
處理點擊事件方便,如adapter中的viewholder
同時父組件綁定後子組件無需綁定
注意
在setcontentview以後使用,且子空間不可再使用static final屬性ide
在較低Android版本此方法可能有問題,即src和setbackground的區別,一樣能夠設置背景圖片,但src僅將圖片資源加載,不作其餘處理,而setbackground會使圖片自適應與按鈕大小,但也有具體屬性設置,imagebutton相比常規button對圖片設置更加詳細,但對字處理較弱。佈局
public CenterLayoutManager(Context context) { super(context); } public CenterLayoutManager(Context context, int orientation, boolean reverseLayout) { super(context, orientation, reverseLayout); } public CenterLayoutManager(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { super(context, attrs, defStyleAttr, defStyleRes); } @Override public void smoothScrollToPosition(RecyclerView recyclerView, RecyclerView.State state, int position) { RecyclerView.SmoothScroller smoothScroller = new CenterSmoothScroller(recyclerView.getContext()); smoothScroller.setTargetPosition(position); startSmoothScroll(smoothScroller); } private static class CenterSmoothScroller extends LinearSmoothScroller { CenterSmoothScroller(Context context) { super(context); } @Override public int calculateDtToFit(int viewStart, int viewEnd, int boxStart, int boxEnd, int snapPreference) { return (boxStart + (boxEnd - boxStart) / 2) - (viewStart + (viewEnd - viewStart) / 2); } } }
注意重寫lanerlayoutmanager類的方法,與繪製組件較類似code
popwindow通常不直接使用,配合recycler能夠有更加多變的使用方法,popwindow與dialog傳統對話框區別能夠在任意位置顯示,更加靈活,
與recycler結合接口
View view = LayoutInflater.from(getContext()).inflate(R.layout.pop_classifyfragment,null); RecyclerView recyclerView =(RecyclerView) view.findViewById(R.id.pop_classifyfragment_list); recyclerView.setLayoutManager(new GridLayoutManager(getContext(),4)); Classify_PopAdapter popAdapter =new Classify_PopAdapter(getContext(),mList); recyclerView.setAdapter(popAdapter); popAdapter.setClickListener(new AdapterClickListener() { @Override public void click(int flag, int position) { } }); mPopWindow = new PopupWindow(view, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT, true); mPopWindow.setContentView(view); mPopWindow.showAtLocation(pop_btn, Gravity.NO_GRAVITY, 187, 72); MWindowManager.init(getActivity()).lightoff(); mPopWindow.setOnDismissListener(new PopupWindow.OnDismissListener() { //在dismiss中恢復透明度 public void onDismiss() { MWindowManager.init(getActivity()).lighton(); } }); }
原理爲計算每一項的中心線位置,與窗口的中心線位置相減,計算出偏移量。而中心線位置由 (尾-頭)/2+頭 計算得出。
通常爲額外寫一個類,不直接在activity中寫,會形成冗餘。
同時還需創建adapter類,便於設置數據,layoutparams還可設置popwindow的大小,展現時經過showatlocation後兩個屬性設置與原點偏移量,如第三個屬性爲gravity.no_gravity默認會在左上角顯示原點,因此應根據實際狀況設置參數事件
activity並不直接控制視圖,控制視圖的爲window類,它有接口MWindow供使用,使用MWindow.init.lightoff() 方法和相似lighton()方法能夠實現popwindwo打開關閉時主activity狀態的明暗變化,此時注意界面層次爲activity、popwindow的父佈局如linerlayout、popwindow的子控件。圖片