Android 開發學習進程0.14

BindView ButterKnife

優點
綁定組件方便,使用簡單
處理點擊事件方便,如adapter中的viewholder
同時父組件綁定後子組件無需綁定
注意
在setcontentview以後使用,且子空間不可再使用static final屬性ide

在不改變按鈕圖片大小的狀況,擴大點擊事件,

在較低Android版本此方法可能有問題,即src和setbackground的區別,一樣能夠設置背景圖片,但src僅將圖片資源加載,不作其餘處理,而setbackground會使圖片自適應與按鈕大小,但也有具體屬性設置,imagebutton相比常規button對圖片設置更加詳細,但對字處理較弱。佈局

recyclerview設置滾動條自動將點擊項滾動到中間方法##

  • 重寫linerlayout類,以下代碼:
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

  • 在點擊事件中設置centersmoothscroller的方法
  • 同時在記得爲recycler適配器設置上你的自定義佈局

Popwindow配合recycler使用設置

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默認會在左上角顯示原點,因此應根據實際狀況設置參數事件

MWindow.init 方法

activity並不直接控制視圖,控制視圖的爲window類,它有接口MWindow供使用,使用MWindow.init.lightoff() 方法和相似lighton()方法能夠實現popwindwo打開關閉時主activity狀態的明暗變化,此時注意界面層次爲activity、popwindow的父佈局如linerlayout、popwindow的子控件。圖片

相關文章
相關標籤/搜索