Skip to content

Instantly share code, notes, and snippets.

@diegohkd
Last active April 10, 2020 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegohkd/57bf6eed1f49ef1680313bc2de23f654 to your computer and use it in GitHub Desktop.
Save diegohkd/57bf6eed1f49ef1680313bc2de23f654 to your computer and use it in GitHub Desktop.
Show DialogFragment at the top of screen
fun DialogFragment.setupToShowAtTheTop() {
dialog?.window?.setGravity(Gravity.CENTER_HORIZONTAL or Gravity.TOP)
}
...
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