그림 과 같이 상단에 나오는 Title Bar style로 없애기 (안드로이드 4.0 기준)
1
style.xml
eclipse에서 project 생성시 자동 생성되는 스타일 코드
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="android:Theme.Light" />
</resources>
맨 좌측 그림과 같이 두꺼운 title bar 가 자리만 차지 하고 있다.
이 상태에서 style name 바꿔준후
style.xml
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="TestTheme" parent="android:Theme" />
</resources>
AndroidManifest.xml 로 가서
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/TestTheme" >
......
</application>
빨간색 부분을 추가 시켜 주면 안드로이드 하위버전과 같은 띠로 바뀌게 된다. 왜 일케 안없어 지는지 ㅡㅡ;;
저 띠 마저 없애 주려면
다시 style.xml 에서
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="TestTheme" parent="android:Theme">
<item name="android:windowNoTitle">true</item> // 상단바 제거
</style>
</resources>
빨간색 표시로 된것을 추가 시켜 주면 title bar 는 지워 진다.
안드로이드 webview에서 뒤로가기 버튼 (0) | 2012.10.22 |
---|---|
ViewFlipper에서 WebView 를 불러와 슬라이딩 적용하기 (2) | 2012.09.18 |
flipper 사용하여 좌우 슬라이딩 만들기 (2) | 2012.09.18 |
안드로이드 WebView (0) | 2012.09.12 |
댓글 영역