화면마다 동일한 타이틀바가 필요하여 구글링하여 커스텀 타이틀바를 만들어 보았다. 허접하다..
1. 타이틀바 layout 만들기
<custom_title.xml>
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:color/background_dark" >
<Button android:id="@+id/backBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:text="@string/btn_back" />
<TextView android:id="@+id/titleTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textSize="18sp" />
<Button android:id="@+id/nextBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="5dp"
android:text="@string/btn_next" />
</RelativeLayout>
2. values폴더의 styles.xml 에 테마 관련 정보 추가하기
<style name="CustomTitle" parent="android:Theme">
<item name="android:windowTitleSize">48dp</item>
<item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
</style>
<style name="CustomWindowTitleBackground">
<item name="android:background">#00000000</item>
</style>
3. AndroidManifest.xml 에 테마 설정하기
<activity
android:name=".Activity"
android:theme="@style/CustomTitle" />
4. Activity.java에 다음 코드 넣기
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title);
...
}
끝.
'프로그래밍 > 안드로이드' 카테고리의 다른 글
[안드로이드] '.. must override a superclass method' 오류 해결 (0) | 2013.05.12 |
---|---|
[안드로이드] 카메라 크롭 기능 (Camera Crop) (2) | 2013.01.10 |
[안드로이드] getResources().getDrawable(id) Out of Memory 오류 (0) | 2012.12.28 |
[안드로이드] Facebook 오류 (error_code=1 Error 1349040 Invalid Application ID: The specified application ID is invalid) (0) | 2012.12.27 |
[안드로이드] JXL(JExcelAPI) 한글 안 나오는 문제 (0) | 2012.09.05 |