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

ActionBar 属性

时间:2015-01-07 16:39:45      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

 

    private void setActionBarStyle() {
        ActionBar actionBar = this.getActionBar();
        actionBar.setDisplayShowHomeEnabled(false); //隐藏icon、logo
//        actionBar.setDisplayShowTitleEnabled(false); //隐藏title,会把坐上脚
        actionBar.setBackgroundDrawable(this.getBaseContext().getResources().getDrawable(R.drawable.slidmenu_bg_titlebar));//设置背景颜色
        actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);//模式:标准
        actionBar.setHomeButtonEnabled(true);//按钮科点击
        actionBar.setDisplayHomeAsUpEnabled(true);//显示返回按钮(按钮可自定义:homeAsUpIndicator)
        actionBar.setTitle(" ");//设置label
//        int titleId = Resources.getSystem().getIdentifier("action_bar_title", "id", "android");
//        TextView textView = (TextView) findViewById(titleId);
////        textView.setTypeface(Typeface.createFromAsset(getAssets(), "font/Wendy.ttf"));
//        textView.setTextColor(0xFFdfdfdf);
//        textView.setTextSize(16);
    }

 

ActionBar 属性

标签:

原文地址:http://www.cnblogs.com/nongzha/p/4208701.html

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