android.databinding.OnRebindCallback Java Examples
The following examples show how to use
android.databinding.OnRebindCallback.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AnimationActivity.java From DataBindingSample with Apache License 2.0 | 5 votes |
@Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); mBinding = DataBindingUtil.setContentView(this, R.layout.activity_animation); mBinding.addOnRebindCallback(new OnRebindCallback() { @Override public boolean onPreBind(ViewDataBinding binding) { ViewGroup view = (ViewGroup) binding.getRoot(); TransitionManager.beginDelayedTransition(view); return true; } }); mBinding.setPresenter(new Presenter()); }