Screen Size Honeycomb Menu android

前端 未结 3 1729
囚心锁ツ
囚心锁ツ 2021-01-20 03:06

Hi I am trying yo get the screen size of screen minus the menu bar at the bottom.

I know I could just subtract a constant number according to the resolution of the d

3条回答
  •  太阳男子
    2021-01-20 03:45

    I am drawing image in native code and I need to pass the size of the screen to C.

    I tried to get the Height by getHeight() of the view but that returns 0 always even after setContentView is called.

    RelativeLayout masterLayout = new RelativeLayout(this);
    RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT);
    masterLayout.setLayoutParams(params);
    setContentView(masterLayout);
    

    when I try masterLayout.getHeight(), it returns 0. I expected to get the full screen height as I said fill_parent.

提交回复
热议问题