When using CCTextFieldTTF with Admob keyboard not showing

Hi,
I am developing a Win32 App in C*+ using Cocos2d-2.0-x-2.0.4 version.
Completed everything including Admob integration.
Now add is showing, other JNI calls are working fine.
But when try to open keyboard using ->attachWithIME; command, its not showing.
When removing the Admob integration part, the keyboard is showing as expected.
I am using CCTextFieldTTF to show the keyboard.
The Admob integration part is as follows:
`Override
protected void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.mHandler = new Cocos2dxHandler(this);
this.mGLSurfaceView = onCreateView();
Cocos2dxHelper.init(this, this);
me = this;
//---------------------------below is the admob integration part–when i remove it keyboard is showing--------
this.mHandler = new Cocos2dxHandler(this);
setContentView(R.layout.main);
this.mGLSurfaceView = (Cocos2dxGLSurfaceView) findViewById(R.id.game_gl_surfaceview);
this.mGLSurfaceView.setCocos2dxRenderer(new Cocos2dxRenderer());
// Admob view
this._adMob = (AdView) findViewById(R.id.adView);
this._adMob.setVisibility(AdView.VISIBLE);
//-----------------------------------------------------------------------------------------------
}

and main.xml data is as follows(i have changed my adUnitId here)

<?xml version="1.0" encoding="utf-8"?>


<RelativeLayout
android:id="`*id/ADLayout"
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”>
<org.cocos2dx.lib.Cocos2dxGLSurfaceView
android:id="@+id/game_gl_surfaceview"
android:layout_width=“fill_parent”
android:layout_height=“fill_parent”/>
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_alignParentBottom=“true”
android:layout_centerHorizontal=“true”
ads:adSize=“BANNER”
ads:adUnitId=“myAdId”
ads:loadAdOnCreate=“true”
/>

I am really stuck here for last 2 weeks… :frowning:
Please help me…any idea…?