Last active
April 10, 2020 13:40
-
-
Save diegohkd/57bf6eed1f49ef1680313bc2de23f654 to your computer and use it in GitHub Desktop.
Show DialogFragment at the top of screen
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
fun DialogFragment.setupToShowAtTheTop() { | |
dialog?.window?.setGravity(Gravity.CENTER_HORIZONTAL or Gravity.TOP) | |
} |
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
... | |
import androidx.fragment.app.DialogFragment | |
... | |
class MyDialogFragment : DialogFragment() { | |
... | |
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { | |
super.onViewCreated(view, savedInstanceState) | |
setupToShowAtTheTop() | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment