本文整理汇总了Java中android.app.ActionBar.setBackgroundDrawable方法的典型用法代码示例。如果您正苦于以下问题:Java ActionBar.setBackgroundDrawable方法的具体用法?Java ActionBar.setBackgroundDrawable怎么用?Java ActionBar.setBackgroundDrawable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.app.ActionBar
的用法示例。
在下文中一共展示了ActionBar.setBackgroundDrawable方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onCreate
import android.app.ActionBar; //导入方法依赖的package包/类
/**
* Initiates the launcher selection screen.
*/
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.apply_launcher_main);
ActionBar actionBar = getActionBar();
Resources res = MainActivity.this.getResources();
actionBar.setBackgroundDrawable(new ColorDrawable(res.getColor(R.color.icon_dark_gray)));
//Sets the action bar text color by using html font tag with color tag
//htmlColor is the color converted to work with html
int actionFontColor = getResources().getColor(R.color.white);
String htmlColor =
String.format(Locale.US, "#%06X", (0xFFFFFF & Color.argb(0, Color.red(actionFontColor),
Color.green(actionFontColor), Color.blue(actionFontColor))));
getActionBar().setTitle(Html.fromHtml("<font color=\""+ htmlColor + "\">"
+ getString(R.string.app_name) + "</font>"));
getSupportFragmentManager().beginTransaction()
.replace(R.id.container_launcher,
new ApplyLauncherFragment())
.commit();
}
示例2: setupActionBarDrawable
import android.app.ActionBar; //导入方法依赖的package包/类
private void setupActionBarDrawable(Drawable drawable) {
if (drawable != null) {
final ActionBar actionBar = LuaViewUtil.getActionBar(getGlobals());
if (actionBar != null) {
actionBar.setBackgroundDrawable(drawable);
}
}
}