My problem is when keyboard is open scrollview is not working. Means basically when I have Theme android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"   scrollview is not working When I have theme android:theme="@android:style/Theme.Black.NoTitleBar" and remove this from manifest  android:windowSoftInputMode="adjustResize" then scrollview is working perfectly. But my app theme is android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen".   
This is my activity
package com.example.demo;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}
This is my xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >
            <Button
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="btn1" />
            <Button
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="btn2" />
            <Button
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="btn3" />
            <Button
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="btn4" />
            <Button
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="btn5" />
            <EditText
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" />
            <Button
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="btn1" />
            <Button
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="btn2" />
            <Button
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="btn3" />
            <Button
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="btn4" />
            <Button
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="btn5" />
        </LinearLayout>
    </ScrollView>
</RelativeLayout>
This is my manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.demo"
    android:versionCode="1"
    android:versionName="1.0" >
    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" >
        <activity
            android:name="com.example.demo.MainActivity"
            android:windowSoftInputMode="adjustResize" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>
please help me. Thanks in advance.
 
     
     
     
     
     
    