listview 의 배경이미지를 주었을 경우 소프트 키보드가 올라오면 배경 이미지가 늘었다 줄었다 하면서 깨집니다.
	카톡의 경우를 보면 키보드만 올라오고 배경 이미지는 고정이 되어 있더라고요...
	어떻게 하면 이런식으로 처리가 가능할까요?
	 
	현재 사용중인 layout 파일 내용입니다.
	 
	<?xml version="1.0" encoding="utf-8"?>
	    android:layout_width="fill_parent"
	    android:layout_height="fill_parent"
	    android:background="#ffffffff"
	    android:orientation="vertical" >
	 
	    <LinearLayout
	        android:layout_width="fill_parent"
	        android:layout_height="wrap_content"
	        android:orientation="horizontal" >
	 
	        <ImageButton
	            android:id="@+id/btnBack"
	            android:layout_width="wrap_content"
	            android:layout_height="wrap_content"
	            android:background="#00000000"
	            android:src="@drawable/btn_back" />
	 
	        <TextView
	            android:id="@+id/title"
	            android:layout_width="wrap_content"
	            android:layout_height="wrap_content"
	            android:gravity="center_horizontal"
	            android:layout_weight="1"
	            android:fontFamily="sans-serif-condensed"
	            android:textColor="@color/lightGray"
	            android:textSize="24sp" />
	 
	        <ImageButton
	            android:id="@+id/btnMenu"
	            android:layout_width="wrap_content"
	            android:layout_height="wrap_content"
	            android:background="#00000000"
	            android:src="@drawable/btn_menu" />
	    </LinearLayout>
	 
	    <View
	        android:layout_width="fill_parent"
	        android:layout_height="2dip"
	        android:background="#FF909090" />
	    
	 
	    <ListView
	        android:id="@+id/listMessage"
	        android:layout_width="fill_parent"
	        android:layout_height="fill_parent"
	        android:layout_weight="1"
	        android:cacheColorHint="#00000000"
	        android:background="@drawable/back_image"
	        android:transcriptMode="alwaysScroll" />
	 
	    <LinearLayout
	        android:layout_width="fill_parent"
	        android:layout_height="wrap_content"
	        android:gravity="center"
	        android:orientation="horizontal" >
	 
	        <ImageButton
	            android:id="@+id/btnFileSend"
	            android:layout_width="wrap_content"
	            android:layout_height="wrap_content"
	            android:background="#00000000"
	            android:src="@drawable/send_plus_button" />
	    
	        <EditText
	            android:id="@+id/editMessage"
	            android:layout_width="0px"
	            android:layout_height="wrap_content"
	            android:layout_weight="1"
	            android:background="#00000000"
	            android:textColor="#ff000000"
	            android:ems="10" >
	            <requestFocus /> 
	</EditText>
	 
	        <ImageButton
	            android:id="@+id/btnEmoticon"
	            android:layout_width="wrap_content"
	            android:layout_height="wrap_content"
	            android:background="#00000000"
	            android:padding="6dp"
	            android:src="@drawable/emoticon_button" />
	        
	        <ImageButton
	            android:id="@+id/btnMessageSend"
	            android:layout_width="wrap_content"
	            android:layout_height="wrap_content"
	            android:background="#00000000"
	            android:src="@drawable/btn_send" />
	    </LinearLayout>
	 
	</LinearLayout>