菜鸟新闻2--设置沉浸式状态栏_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 菜鸟新闻2--设置沉浸式状态栏

菜鸟新闻2--设置沉浸式状态栏

 2017/5/20 5:34:37  ganchuanpu  程序员俱乐部  我要评论(0)
  • 摘要:将高度拉伸了protectedvoidsetStatusBar(){if(Build.VERSION.SDK_INT>=Build.VERSION_CODES.KITKAT){finalViewGrouplinear_bar=(ViewGroup)findViewById(R.id.bar_layout);finalintstatusHeight=getStatusBarHeight();linear_bar.post(newRunnable()
  • 标签:

 将高度拉伸了

class="brush:java;gutter:true;">protected void setStatusBar() {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
        final ViewGroup linear_bar = (ViewGroup) findViewById(R.id.bar_layout);
        final int statusHeight = getStatusBarHeight();
        linear_bar.post(new Runnable() {
            @Override
            public void run() {
                int titleHeight = linear_bar.getHeight();
                android.widget.LinearLayout.LayoutParams params = (android.widget.LinearLayout.LayoutParams) linear_bar.getLayoutParams();
                params.height = statusHeight + titleHeight;
                linear_bar.setLayoutParams(params);
            }
        });
    }
}

  

  • 相关文章
发表评论
用户名: 匿名