Skip to content

Instantly share code, notes, and snippets.

@goodev
Last active December 29, 2015 12:29
Show Gist options
  • Save goodev/7671272 to your computer and use it in GitHub Desktop.
Save goodev/7671272 to your computer and use it in GitHub Desktop.
获取 ActionBar 的 title view 并设置 初始 Alpha 值
private TextView getActionBarTitleView() {
int id = Resources.getSystem().getIdentifier("action_bar_title", "id", "android");
return (TextView) findViewById(id);
}
getActionBarTitleView().setAlpha(0f);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment