질문은 처음이지만 제가 어떻게 할수 없어서 질문을 드립니다..
현재 개발버전은 4.4.2 입니다. 이클립스 기반 개발중입니다.
커스텀 타이틀로 배경색을 바꾸는데에는 성공했습니다.
그런데 문제가 생겼습니다.
엑티비티 입력부분을 이렇게 했고요.
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title);
커스텀 타이틀이라는 레이아웃을 만들었습니다.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#34c8b3"
android:orientation="horizontal" >
<TextView
android:id="@+id/title_text"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal"
>
</TextView>
</LinearLayout>
맨 상위 레이아웃에 배경을 주었죠.
메니페스트 파일에
<activity android:name=".파일이름"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden"
android:theme="@android:style/Theme"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
보시다시피 테마도 추가하였습니다.
정상적으로 작동은 하는것 같은데, 문제는 
표시된 부분처럼 저렇게 왼쪽에 뭔가 회색이 남는다는 겁니다.
다른걸로 시도해봐도 그렇고요.
저 거슬리는 회색을 연두색으로 덮어버리고 싶은데 방법을 도무지 모르겠습니다.
이런 현상은 저만겪는 건지 다른분들도 겪어 본건지 모르겠네요.
도와주세요 제발 ㅠㅠ