티스토리 뷰
화면마다 동일한 타이틀바가 필요하여 구글링하여 커스텀 타이틀바를 만들어 보았다. 허접하다..
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);
...
}
'개발 > 개발 자료' 카테고리의 다른 글
(Android) ListView 스크롤바 안보이게 하기 (0) | 2015.03.28 |
---|---|
(Android) 특정 어플리케이션이 설치 또는 제거되는 이벤트 획득하기 (0) | 2015.03.27 |
(JSP) Could not open the editor: An unexpected exception was thrown (0) | 2015.03.20 |
(Android) TextView Animation 처리 fade in/out (0) | 2015.03.13 |
(Android) Intent로 Bitmap 넘기기 (4) | 2015.02.11 |