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

fix bug,imp project. #12

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

fix bug,imp project. #12

wants to merge 2 commits into from

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.

None yet

2 participants