码迷,mamicode.com
首页 > 其他好文 > 详细

获取ActionBar高度

时间:2014-10-11 16:26:45      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   io   使用   ar   数据   sp   

 

代码中获取

  • getActionbar().getHeight() 这个方法在onCreate中是获取不到高度的,平常使用还可以
  • 第二种,通过主题数据获取高度
    /**
       * 获取ActionBar 高度
       * @param context
       * @return
       */
      public static int getActionBarHeight(Context context){
          TypedValue tv = new TypedValue();
          if (context.getTheme().resolveAttribute(android.R.attr.actionBarSize,tv,true)){
              return  TypedValue.complexToDimensionPixelSize(tv.data,
                      context.getResources().getDisplayMetrics());
          }
          return 0;
      }

     

xml中使用

android:paddingTop="?android:attr/actionBarSize"

 

获取ActionBar高度

标签:android   style   blog   color   io   使用   ar   数据   sp   

原文地址:http://www.cnblogs.com/Jabba93/p/4018967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!