Search in sources :

Example 1 with AddDeleteDrawable

use of com.hippo.drawable.AddDeleteDrawable in project EhViewer by seven332.

the class GalleryListScene method onCreateView2.

@Nullable
@Override
public View onCreateView2(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.scene_gallery_list, container, false);
    Context context = getContext2();
    Assert.assertNotNull(context);
    Resources resources = context.getResources();
    mHideActionFabSlop = ViewConfiguration.get(context).getScaledTouchSlop();
    mShowActionFab = true;
    View mainLayout = ViewUtils.$$(view, R.id.main_layout);
    ContentLayout contentLayout = (ContentLayout) ViewUtils.$$(mainLayout, R.id.content_layout);
    mRecyclerView = contentLayout.getRecyclerView();
    FastScroller fastScroller = contentLayout.getFastScroller();
    RefreshLayout refreshLayout = contentLayout.getRefreshLayout();
    mSearchLayout = (SearchLayout) ViewUtils.$$(mainLayout, R.id.search_layout);
    mSearchBar = (SearchBar) ViewUtils.$$(mainLayout, R.id.search_bar);
    mFabLayout = (FabLayout) ViewUtils.$$(mainLayout, R.id.fab_layout);
    mSearchFab = ViewUtils.$$(mainLayout, R.id.search_fab);
    int paddingTopSB = resources.getDimensionPixelOffset(R.dimen.gallery_padding_top_search_bar);
    int paddingBottomFab = resources.getDimensionPixelOffset(R.dimen.gallery_padding_bottom_fab);
    mViewTransition = new ViewTransition(contentLayout, mSearchLayout);
    mHelper = new GalleryListHelper();
    mHelper.setEmptyString(resources.getString(R.string.gallery_list_empty_hit));
    contentLayout.setHelper(mHelper);
    contentLayout.getFastScroller().setOnDragHandlerListener(this);
    mAdapter = new GalleryListAdapter(inflater, resources, mRecyclerView, Settings.getListMode());
    mRecyclerView.setSelector(Ripple.generateRippleDrawable(context, false));
    mRecyclerView.setDrawSelectorOnTop(true);
    mRecyclerView.hasFixedSize();
    mRecyclerView.setClipToPadding(false);
    mRecyclerView.setOnItemClickListener(this);
    mRecyclerView.setOnItemLongClickListener(this);
    mRecyclerView.addOnScrollListener(mOnScrollListener);
    fastScroller.setPadding(fastScroller.getPaddingLeft(), fastScroller.getPaddingTop() + paddingTopSB, fastScroller.getPaddingRight(), fastScroller.getPaddingBottom());
    refreshLayout.setHeaderTranslationY(paddingTopSB);
    mLeftDrawable = new DrawerArrowDrawable(context);
    mRightDrawable = new AddDeleteDrawable(context);
    mSearchBar.setLeftDrawable(mLeftDrawable);
    mSearchBar.setRightDrawable(mRightDrawable);
    mSearchBar.setHelper(this);
    mSearchBar.setOnStateChangeListener(this);
    setSearchBarHint(context, mSearchBar);
    mSearchLayout.setHelper(this);
    mSearchLayout.setPadding(mSearchLayout.getPaddingLeft(), mSearchLayout.getPaddingTop() + paddingTopSB, mSearchLayout.getPaddingRight(), mSearchLayout.getPaddingBottom() + paddingBottomFab);
    mFabLayout.setAutoCancel(true);
    mFabLayout.setExpanded(false);
    mFabLayout.setHidePrimaryFab(false);
    mFabLayout.setOnClickFabListener(this);
    mFabLayout.setOnExpandListener(this);
    addAboveSnackView(mFabLayout);
    mActionFabDrawable = new AddDeleteDrawable(context);
    mActionFabDrawable.setColor(resources.getColor(R.color.primary_drawable_dark));
    mFabLayout.getPrimaryFab().setImageDrawable(mActionFabDrawable);
    mSearchFab.setOnClickListener(this);
    mSearchBarMover = new SearchBarMover(this, mSearchBar, mRecyclerView, mSearchLayout);
    // Update list url builder
    onUpdateUrlBuilder();
    // Restore state
    int newState = mState;
    mState = STATE_NORMAL;
    setState(newState, false);
    // Only refresh for the first time
    if (!mHasFirstRefresh) {
        mHasFirstRefresh = true;
        mHelper.firstRefresh();
    }
    guideQuickSearch();
    return view;
}
Also used : Context(android.content.Context) ViewTransition(com.hippo.view.ViewTransition) FastScroller(com.hippo.easyrecyclerview.FastScroller) EasyRecyclerView(com.hippo.easyrecyclerview.EasyRecyclerView) ShowcaseView(com.github.amlcurran.showcaseview.ShowcaseView) View(android.view.View) AdapterView(android.widget.AdapterView) TextView(android.widget.TextView) ListView(android.widget.ListView) RecyclerView(android.support.v7.widget.RecyclerView) Point(android.graphics.Point) SearchBarMover(com.hippo.widget.SearchBarMover) ContentLayout(com.hippo.widget.ContentLayout) RefreshLayout(com.hippo.refreshlayout.RefreshLayout) DrawerArrowDrawable(com.hippo.drawable.DrawerArrowDrawable) Resources(android.content.res.Resources) AddDeleteDrawable(com.hippo.drawable.AddDeleteDrawable) Nullable(android.support.annotation.Nullable)

Aggregations

Context (android.content.Context)1 Resources (android.content.res.Resources)1 Point (android.graphics.Point)1 Nullable (android.support.annotation.Nullable)1 RecyclerView (android.support.v7.widget.RecyclerView)1 View (android.view.View)1 AdapterView (android.widget.AdapterView)1 ListView (android.widget.ListView)1 TextView (android.widget.TextView)1 ShowcaseView (com.github.amlcurran.showcaseview.ShowcaseView)1 AddDeleteDrawable (com.hippo.drawable.AddDeleteDrawable)1 DrawerArrowDrawable (com.hippo.drawable.DrawerArrowDrawable)1 EasyRecyclerView (com.hippo.easyrecyclerview.EasyRecyclerView)1 FastScroller (com.hippo.easyrecyclerview.FastScroller)1 RefreshLayout (com.hippo.refreshlayout.RefreshLayout)1 ViewTransition (com.hippo.view.ViewTransition)1 ContentLayout (com.hippo.widget.ContentLayout)1 SearchBarMover (com.hippo.widget.SearchBarMover)1