orhanobut / dialogplus

Advanced dialog solution for android
Apache License 2.0
5k stars 793 forks source link

Why use contentView? #190

Closed hahaha28 closed 5 years ago

hahaha28 commented 5 years ago

In your code

decorView = activity.getWindow().getDecorView().findViewById(android.R.id.content);
...
decorView.addView(view);

why not use

decorView = activity.getWindow().getDecorView().

You add view in the contentView not the decorView.