Giter Site home page Giter Site logo

android-pagestatelayout's People

Contributors

mylhyl avatar qingtianxiaoyu avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

qingtianxiaoyu

android-pagestatelayout's Issues

当指定的contentId布局宽高有权重或者是约束布局的子View的时候宽高显示不正常。

项目中类似recyclerView或者listView和ScrollView需要状态的情况也不在少数,测试发现
在activity中直接pageState = StatusLayout.wrap(this,R.id.id_of_scroll_view)类似这样的代码,在scrollView设置了权重的情况下,并不能加载scrollview正确的宽高。

原理很简单,原View被加载到了自定义View,自定义View获取了它的lp,但是原View的宽高这时候不应该都是MATCH_PARENT吗?

我懒得copy和paste,直接反射写了段。


    public static PageState wrap(Activity activity, @IdRes int contentId) {
        ViewGroup actContent = activity.findViewById(android.R.id.content);
        ViewGroup rootLayout = (ViewGroup) (actContent).getChildAt(0);
        View contentLayout = rootLayout.findViewById(contentId);
        if (contentLayout == null) {
            throw new RuntimeException("contentLayout can not be null");
        }
        ViewGroup.LayoutParams lp = contentLayout.getLayoutParams();
        ViewGroup parent = (ViewGroup) contentLayout.getParent();
        if (parent == null) {
            throw new RuntimeException("parent of the contentLayout can not be null");
        }
        int contentViewIndex = parent.indexOfChild(contentLayout);

        // 移除子View
        parent.removeView(contentLayout);

        // 添加statusView
        PageStateLayout statusLayout = new PageStateLayout(parent.getContext());
        parent.addView(statusLayout, contentViewIndex,lp);
        // statusView添加子View
        statusLayout.addView(contentLayout);

        // 设置宽高
        contentLayout.getLayoutParams().width = ViewGroup.LayoutParams.MATCH_PARENT;
        contentLayout.getLayoutParams().height = ViewGroup.LayoutParams.MATCH_PARENT;
        
        // 反射调用setContentView方法,将contentLayout设置为statusLayout的contentLayout
        Class<?> temp = statusLayout.getClass();
        Field f;
        try {
            f = temp.getDeclaredField("mPageStateCreator");
            f.setAccessible(true);
            Method get = f.get(statusLayout).getClass().getDeclaredMethod("setContentView", View.class);
            get.setAccessible(true);
            get.invoke(f.get(statusLayout),contentLayout);
        } catch (Exception e) {
            e.printStackTrace();
        }

        return statusLayout;
    }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.