gpt4 book ai didi

android - 隐藏小屏幕的操作栏

转载 作者:行者123 更新时间:2023-11-29 14:47:53 25 4
gpt4 key购买 nike

我正在开发 android aap,我想隐藏小屏幕 (240x320) 的操作栏,但不适用于普通屏幕和大屏幕。是的话可以隐藏吗?

最佳答案

然后你需要先得到维度..

获取维度的方法如下:

Display display = getWindowManager().getDefaultDisplay(); 
int width = display.getWidth();
int height = display.getHeight();

see answers here on how to get the screen dimension

隐藏操作栏的方法

    getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
getActionBar().hide();

v7新增支持actionbar用户,代码如下:

getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
getSupportActionBar().hide();

see answers here on how to hide action bar

关于android - 隐藏小屏幕的操作栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29178409/

25 4 0