Unable to show Snackbar from PreferenceFragment

隐身守侯 提交于 2019-12-05 20:43:51

Try this for get view

View view = getView();

So the code is.

public void hideKeyWithError(final String error) {
new Handler().postDelayed(new Runnable() {
    @Override
    public void run() {
        View view = getView();
        AppUtils.hide_keyboard(getActivity());
        Snackbar.make(view,error,Snackbar.LENGTH_LONG).show();
    }
}, (300));
}

View param of Snackbar.make() means a view on which Snackbar can find parent to display Snackbar on the top of screen

Snackbar will try and find a parent view to hold Snackbar's view from the value given to view

Link

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!