Notice
Recent Posts
Recent Comments
올해는 머신러닝이다.
android titlebar 색깔 바꾸기 본문
setContentView앞에서 적용해야하는 것!!
View titleView = getWindow().findViewById(android.R.id.title);
if (titleView != null) {
ViewParent parent = titleView.getParent();
if (parent != null && (parent instanceof View)) {
View parentView = (View)parent;
parentView.setBackgroundColor(Color.rgb(0x88, 0x33, 0x33));
}
}
'Android > Tip&Tech' 카테고리의 다른 글
텝 관련 팁 모음 (0) | 2011.05.04 |
---|---|
[펌] Custom Android Button Style and Theme (0) | 2011.05.03 |
안드로이드 로그인 관련 예제 (0) | 2011.05.03 |
<안드로이드 팁]edittext에 원하는 키보드옵션넣기 (0) | 2011.05.02 |
android image drag(드래그 앤 드랍) (0) | 2011.05.02 |