当前位置: 首页>>代码示例>>Java>>正文


Java CoordinatorLayout.Behavior方法代码示例

本文整理汇总了Java中android.support.design.widget.CoordinatorLayout.Behavior方法的典型用法代码示例。如果您正苦于以下问题:Java CoordinatorLayout.Behavior方法的具体用法?Java CoordinatorLayout.Behavior怎么用?Java CoordinatorLayout.Behavior使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.support.design.widget.CoordinatorLayout的用法示例。


在下文中一共展示了CoordinatorLayout.Behavior方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setupDialog

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
@Override
public void setupDialog(Dialog dialog, int style) {
    LogUtils.footPrint();
    super.setupDialog(dialog, style);
    View contentView = View.inflate(getContext(), R.layout.fragment_add_list_dialog, null);
    dialog.setContentView(contentView);
    CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) ((View) contentView.getParent()).getLayoutParams();
    CoordinatorLayout.Behavior behavior = params.getBehavior();

    if (behavior != null && behavior instanceof BottomSheetBehavior) {
        BottomSheetBehavior bottomSheetBehavior = ((BottomSheetBehavior) behavior);
        bottomSheetBehavior.setBottomSheetCallback(bottomSheetBehaviorCallback);
    }

    ButterKnife.bind(this, contentView);

    Window window = dialog.getWindow();
    if (window != null) {
        window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
    }

    presenter = new AddListPresenter(TodoRepository.getInstance());
    presenter.attachView(this);
}
 
开发者ID:mengdd,项目名称:TodoRealm,代码行数:25,代码来源:AddListDialogFragment.java

示例2: onCreateDialog

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
@NonNull
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    Dialog mSheet = super.onCreateDialog(savedInstanceState);
    View contentView = View.inflate(getContext(), R.layout.bottom_sheet_message, null);
    mSheet.setContentView(contentView);

    unbinder = ButterKnife.bind(this, mSheet);

    CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) ((View) contentView.getParent()).getLayoutParams();
    CoordinatorLayout.Behavior behavior = params.getBehavior();

    if (behavior != null && behavior instanceof BottomSheetBehavior) {
        bottomSheetBehavior = (BottomSheetBehavior) behavior;
        bottomSheetBehavior.setBottomSheetCallback(mBottomSheetBehaviorCallback);
    }

    onPostCreate(this);
    return mSheet;
}
 
开发者ID:wax911,项目名称:anitrend-app,代码行数:21,代码来源:BottomSheetMessage.java

示例3: onCreateDialog

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
@NonNull
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    Dialog mSheet = super.onCreateDialog(savedInstanceState);
    View contentView = View.inflate(getContext(), R.layout.bottom_sheet_emoticons, null);
    mSheet.setContentView(contentView);

    unbinder = ButterKnife.bind(this, mSheet);

    CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) ((View) contentView.getParent()).getLayoutParams();
    CoordinatorLayout.Behavior behavior = params.getBehavior();

    if (behavior != null && behavior instanceof BottomSheetBehavior) {
        bottomSheetBehavior = (BottomSheetBehavior) behavior;
        bottomSheetBehavior.setBottomSheetCallback(mBottomSheetBehaviorCallback);
    }

    onPostCreate(this);
    return mSheet;
}
 
开发者ID:wax911,项目名称:anitrend-app,代码行数:21,代码来源:BottomSheetEmoticon.java

示例4: onCreateDialog

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
@NonNull
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    Dialog mSheet = super.onCreateDialog(savedInstanceState);
    View contentView = View.inflate(getContext(), R.layout.bottom_sheet_share, null);
    mSheet.setContentView(contentView);
    unbinder = ButterKnife.bind(this, mSheet);
    CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) ((View) contentView.getParent()).getLayoutParams();
    CoordinatorLayout.Behavior behavior = params.getBehavior();
    if (behavior != null && behavior instanceof BottomSheetBehavior) {
        bottomSheetBehavior = (BottomSheetBehavior) behavior;
        bottomSheetBehavior.setBottomSheetCallback(mBottomSheetBehaviorCallback);
    }
    onPostCreate(this);
    return mSheet;
}
 
开发者ID:wax911,项目名称:anitrend-app,代码行数:17,代码来源:BottomSheetShare.java

示例5: onCreateDialog

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
@NonNull
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    Dialog mSheet = super.onCreateDialog(savedInstanceState);
    View contentView = View.inflate(getContext(), R.layout.bottom_sheet_recycler, null);
    mSheet.setContentView(contentView);

    unbinder = ButterKnife.bind(this, mSheet);

    CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) ((View) contentView.getParent()).getLayoutParams();
    CoordinatorLayout.Behavior behavior = params.getBehavior();

    if (behavior != null && behavior instanceof BottomSheetBehavior) {
        bottomSheetBehavior = (BottomSheetBehavior) behavior;
        bottomSheetBehavior.setPeekHeight(ScreenUtil.dip2px(getContext(), PEEK_HEIGHT));
        bottomSheetBehavior.setBottomSheetCallback(mBottomSheetBehaviorCallback);
    }

    mToolbar.setNavigationIcon(R.drawable.ic_close_white_24dp);
    mToolbar.setNavigationOnClickListener(this);

    onPostCreate(this);
    return mSheet;
}
 
开发者ID:wax911,项目名称:anitrend-app,代码行数:25,代码来源:BottomSheetUsers.java

示例6: form

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
public static TranslateUpDownBehavior form(View view) {
    ViewGroup.LayoutParams params = view.getLayoutParams();
    if (params == null || !(params instanceof CoordinatorLayout.LayoutParams)) {
        throw new IllegalArgumentException("parent must be CoordinatorLayout");
    }
    CoordinatorLayout.Behavior behavior = ((CoordinatorLayout.LayoutParams) params).getBehavior();
    if (!(behavior instanceof TranslateUpDownBehavior)) {
        throw new IllegalArgumentException("the behavior must be TranslateUpDownBehavior");
    }
    return (TranslateUpDownBehavior) behavior;
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:12,代码来源:TranslateUpDownBehavior.java

示例7: from

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
public static <V extends View> ViewPagerBottomSheetBehavior<V> from(V view) {
    ViewGroup.LayoutParams params = view.getLayoutParams();
    if (!(params instanceof CoordinatorLayout.LayoutParams)) {
        throw new IllegalArgumentException("The view is not a child of CoordinatorLayout");
    }
    CoordinatorLayout.Behavior behavior = ((CoordinatorLayout.LayoutParams) params)
            .getBehavior();
    if (!(behavior instanceof ViewPagerBottomSheetBehavior)) {
        throw new IllegalArgumentException(
                "The view is not associated with ViewPagerBottomSheetBehavior");
    }
    return (ViewPagerBottomSheetBehavior<V>) behavior;
}
 
开发者ID:Krupen,项目名称:FabulousFilter,代码行数:15,代码来源:ViewPagerBottomSheetBehavior.java

示例8: from

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
/**
 * A utility function to get the {@link AnchorSheetBehavior} associated with the {@code view}.
 *
 * @param view The {@link View} with {@link AnchorSheetBehavior}.
 * @return The {@link AnchorSheetBehavior} associated with the {@code view}.
 */
@SuppressWarnings("unchecked")
public static <V extends View> AnchorSheetBehavior<V> from(V view) {
    ViewGroup.LayoutParams params = view.getLayoutParams();
    if (!(params instanceof CoordinatorLayout.LayoutParams)) {
        throw new IllegalArgumentException("The view is not a child of CoordinatorLayout");
    }
    CoordinatorLayout.Behavior behavior = ((CoordinatorLayout.LayoutParams) params).getBehavior();
    if (!(behavior instanceof AnchorSheetBehavior)) {
        throw new IllegalArgumentException("The view is not associated with AnchorSheetBehavior");
    }
    return (AnchorSheetBehavior<V>) behavior;
}
 
开发者ID:alphater,项目名称:garras,代码行数:19,代码来源:AnchorSheetBehavior.java

示例9: from

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
public static <V extends View> BottomNavigationBehavior<V> from(@NonNull V view) {
    ViewGroup.LayoutParams params = view.getLayoutParams();
    if (!(params instanceof CoordinatorLayout.LayoutParams)) {
        throw new IllegalArgumentException("The view is not a child of CoordinatorLayout");
    }
    CoordinatorLayout.Behavior behavior = ((CoordinatorLayout.LayoutParams) params)
            .getBehavior();
    if (!(behavior instanceof BottomNavigationBehavior)) {
        throw new IllegalArgumentException(
                "The view is not associated with BottomNavigationBehavior");
    }
    return (BottomNavigationBehavior<V>) behavior;
}
 
开发者ID:homeii,项目名称:GxIconDIY,代码行数:14,代码来源:BottomNavigationBehavior.java

示例10: from

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
public static <V extends View> FooterBehavior from(V view) {
    ViewGroup.LayoutParams params = view.getLayoutParams();
    if (!(params instanceof CoordinatorLayout.LayoutParams)) {
        throw new IllegalArgumentException("这个View不是CoordinatorLayout的子View");
    }
    CoordinatorLayout.Behavior behavior = ((CoordinatorLayout.LayoutParams) params).getBehavior();
    if (!(behavior instanceof FooterBehavior)) {
        throw new IllegalArgumentException("这个View的Behaviro不是ScaleDownShowBehavior");
    }
    return (FooterBehavior) behavior;
}
 
开发者ID:Pingsh,项目名称:Mix,代码行数:12,代码来源:FooterBehavior.java

示例11: from

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
/**
 * A utility function to get the {@link BottomSheetBehaviorV2} associated with the {@code view}.
 *
 * @param view The {@link View} with {@link BottomSheetBehaviorV2}.
 * @return The {@link BottomSheetBehaviorV2} associated with the {@code view}.
 */
@SuppressWarnings("unchecked")
public static <V extends View> BottomSheetBehaviorV2<V> from(V view) {
    ViewGroup.LayoutParams params = view.getLayoutParams();
    if (!(params instanceof CoordinatorLayout.LayoutParams)) {
        throw new IllegalArgumentException("The view is not a child of CoordinatorLayout");
    }
    CoordinatorLayout.Behavior behavior = ((CoordinatorLayout.LayoutParams) params)
            .getBehavior();
    if (!(behavior instanceof BottomSheetBehaviorV2)) {
        throw new IllegalArgumentException(
                "The view is not associated with BottomSheetBehavior");
    }
    return (BottomSheetBehaviorV2<V>) behavior;
}
 
开发者ID:OhMyLob,项目名称:Paper-Launcher,代码行数:21,代码来源:BottomSheetBehaviorV2.java

示例12: onCreateDialog

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
@NonNull
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    Dialog mSheet = super.onCreateDialog(savedInstanceState);
    View contentView = View.inflate(getContext(), R.layout.bottom_sheet_recycler, null);
    mSheet.setContentView(contentView);

    unbinder = ButterKnife.bind(this, mSheet);

    CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) ((View) contentView.getParent()).getLayoutParams();
    CoordinatorLayout.Behavior behavior = params.getBehavior();

    if (behavior != null && behavior instanceof BottomSheetBehavior) {
        bottomSheetBehavior = (BottomSheetBehavior) behavior;
        bottomSheetBehavior.setPeekHeight(ScreenUtil.dip2px(getContext(), PEEK_HEIGHT));
        bottomSheetBehavior.setBottomSheetCallback(mBottomSheetBehaviorCallback);
    }


    mToolbar.setNavigationIcon(R.drawable.ic_close_white_24dp);
    mToolbar.setNavigationOnClickListener(this);

    mToolbar.inflateMenu(R.menu.menu_generic_detail);
    mToolbar.setOnMenuItemClickListener(new Toolbar.OnMenuItemClickListener() {
        @Override
        public boolean onMenuItemClick(MenuItem item) {
            Toast.makeText(getContext(), "Showing your current favour state", Toast.LENGTH_SHORT).show();
            return true;
        }
    });

    mFavourite = mToolbar.getMenu().findItem(R.id.action_favor_state);
    onPostCreate(this);
    return mSheet;
}
 
开发者ID:wax911,项目名称:anitrend-app,代码行数:36,代码来源:BottomSheetLikes.java

示例13: from

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
public static CommonBehavior from(View view) {
    ViewGroup.LayoutParams params = view.getLayoutParams();
    if (!(params instanceof CoordinatorLayout.LayoutParams)) {
        throw new IllegalArgumentException("The view is not a child of CoordinatorLayout");
    }
    CoordinatorLayout.Behavior behavior = ((CoordinatorLayout.LayoutParams) params).getBehavior();
    if (!(behavior instanceof CommonBehavior)) {
        throw new IllegalArgumentException("The view's behavior isn't an instance of CommonBehavior. " +
                "Try to check the [app:layout_behavior]");
    }
    return (CommonBehavior) behavior;
}
 
开发者ID:Zweihui,项目名称:Aurora,代码行数:13,代码来源:CommonBehavior.java

示例14: from

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
public static <V extends View> ScaleDownShowBehavior from(V view) {
    ViewGroup.LayoutParams params = view.getLayoutParams();
    if (!(params instanceof CoordinatorLayout.LayoutParams)) {
        throw new IllegalArgumentException("The view is not a child of CoordinatorLayout");
    }
    CoordinatorLayout.Behavior behavior = ((CoordinatorLayout.LayoutParams) params).getBehavior();
    if (!(behavior instanceof ScaleDownShowBehavior)) {
        throw new IllegalArgumentException("The view is not associated with ScaleDownShowBehavior");
    }
    return (ScaleDownShowBehavior) behavior;
}
 
开发者ID:zuoni1018,项目名称:CoordinatorLayoutExample-master,代码行数:12,代码来源:ScaleDownShowBehavior.java

示例15: from

import android.support.design.widget.CoordinatorLayout; //导入方法依赖的package包/类
static <V extends View> BottomNavigationBehavior<V> from(@NonNull V view) {
    ViewGroup.LayoutParams params = view.getLayoutParams();
    if (!(params instanceof CoordinatorLayout.LayoutParams)) {
        throw new IllegalArgumentException("The view is not a child of CoordinatorLayout");
    }
    CoordinatorLayout.Behavior behavior = ((CoordinatorLayout.LayoutParams) params)
            .getBehavior();
    if (!(behavior instanceof BottomNavigationBehavior)) {
        throw new IllegalArgumentException(
                "The view is not associated with BottomNavigationBehavior");
    }
    return (BottomNavigationBehavior<V>) behavior;
}
 
开发者ID:A-Miracle,项目名称:QiangHongBao,代码行数:14,代码来源:BottomNavigationBehavior.java


注:本文中的android.support.design.widget.CoordinatorLayout.Behavior方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。