Skip to content
This repository was archived by the owner on Mar 9, 2021. It is now read-only.

Conversation

Blankeer
Copy link

remove *.iml files.
add .gitignore file.
add setError() method.
fix imageId == NO_ID crash bug.
imp code.

@cheng2016
Copy link

private void show(int layoutId) {
        for (View view : mLayouts.values()) {
            view.setVisibility(GONE);
        }
        layout(layoutId).setVisibility(VISIBLE);
    }

应改为,防止部分布局GONE之后重新layotu导致的部分问题

private void show(int layoutId) {
        for (View view : mLayouts.values()) {
            view.setVisibility(INVISIBLE);
        }
        layout(layoutId).setVisibility(VISIBLE);
    }

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants