forked from facebook/litho
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support @OnDataRendered callback in RecyclerBinder
Summary: Execute onDataRendered callbacks if 1. The view is finished drawing (no pending updates) 2. The view is detached from window 3. The view's visibility is GONE 4. The view has been mounted then unmounted (mMountedView == null) If the view isn't mounted yet or has pending updates, we wait for ViewGroup#dispatchDraw to been called, and PostDispatchDraw will trigger onDataRendered callbacks. Reviewed By: astreet Differential Revision: D8780857 fbshipit-source-id: 976f2077e676690ece20968ec46e0b0d3834b744
- Loading branch information
1 parent
3201eff
commit 8da4867
Showing
5 changed files
with
386 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
litho-widget/src/main/java/com/facebook/litho/widget/HasPostDispatchDrawListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright 2014-present Facebook, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.facebook.litho.widget; | ||
|
||
import android.support.annotation.Nullable; | ||
|
||
public interface HasPostDispatchDrawListener { | ||
|
||
// Provide a listener that would call postDispatchDraw() when ViewGroup#dispachDraw() is called. | ||
void setPostDispatchDrawListener(@Nullable PostDispatchDrawListener listener); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
litho-widget/src/main/java/com/facebook/litho/widget/PostDispatchDrawListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* Copyright 2014-present Facebook, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.facebook.litho.widget; | ||
|
||
public interface PostDispatchDrawListener { | ||
|
||
void postDispatchDraw(); | ||
} |
Oops, something went wrong.