setSoftInputMode on Android.
Run npm i react-native-set-soft-input-mode --save
- In your android/settings.gradle file, make the following additions:
include ':react-native-set-soft-input-mode'
project(':react-native-set-soft-input-mode').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-set-soft-input-mode/android')- In your android/app/build.gradle file, add the
:react-native-set-soft-input-modeproject as a compile-time dependency:
...
dependencies {
...
compile project(':react-native-set-soft-input-mode')
}- Update the MainApplication.java file to use
react-native-set-soft-input-modevia the following changes:
import io.github.mr03web.softinputmodemodule.SoftInputModePackage;
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
@Override
protected boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new SoftInputModePackage() // here
);
}
};
...
}Import react-native-set-soft-input-mode in your JS file.
Use like so:
import SoftInputMode from 'react-native-set-soft-input-mode';
export default class Page extends Component {
componentDidMount() {
SoftInputMode.set(SoftInputMode.ADJUST_RESIZE);
}
}| Name | Description |
|---|---|
| ADJUST_NOTHING | SOFT_INPUT_ADJUST_NOTHING |
| ADJUST_PAN | SOFT_INPUT_ADJUST_PAN |
| ADJUST_RESIZE | SOFT_INPUT_ADJUST_RESIZE |
| ADJUST_UNSPECIFIED | SOFT_INPUT_ADJUST_UNSPECIFIED |