79604600

Date: 2025-05-03 10:36:41
Score: 1
Natty:
Report link

you can also post a Runnable to the view's message queue:

dialogView.post(new Runnable() {
    @Override
    public void run() {
        int width = dialogView.getWidth();
        int height = dialogView.getHeight();
        Log.d("DialogSize", "Width: " + width + ", Height: " + height);
    }
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muddasir Mirza