Нижняя кнопка - PullRequest
       32

Нижняя кнопка

0 голосов
/ 16 ноября 2018

У меня есть этот код

<ActionBar title="Home" class="action-bar"></ActionBar>
<GridLayout rows="auto, *, auto">
    <ScrollView col="0" row="1">
        <StackLayout>
            <GridLayout rows="auto, auto, auto, auto, *, 60">
                <StackLayout row="0" backgroundColor="#eee" class="p-20">
                    <Label text="Send email to"></Label>
                    <Label text="email@gmail.com"></Label>
                </StackLayout>
                <Label row="1" text="subject" class="p-10"></Label>
                <TextField row="2" hint="Enter text... "></TextField>
                <FlexboxLayout row="3" colSpan="2" justifyContent="space-between" class="p-10">
                    <Label text="message" class="label-title"></Label>
                    <Label class="label-title">
                        <FormattedString>
                            <Span text="20" padding="90"></Span>
                            <Span text="/"></Span>
                            <Span text="300"></Span>
                        </FormattedString>
                    </Label>
                </FlexboxLayout>
                <TextView row="4" text="" hint="Enter your message..."></TextView>
            </GridLayout>
        </StackLayout>
    </ScrollView>
    <GridLayout row="2">
        <Button text="send" class="btn-message"></Button>
    </GridLayout>
</GridLayout>

и на детской площадке работает как положено: https://play.nativescript.org/?template=play-ng&id=2oSzob

но на моем устройстве нет, нижняя кнопка скрыта под клавиатурой. Может кто-нибудь сказать мне, что я делаю не так?

enter image description here

1 Ответ

0 голосов
/ 16 ноября 2018

nativescript-iqkeyboardmanager должно работать для iOS.

Для Android убедитесь, что для windowSoftInputMode установлено значение adjustResize в App_Resources/Android/src/main/AndroidManifest.xml.

<activity
        android:name="com.tns.NativeScriptActivity"
        android:windowSoftInputMode="adjustResize"
        android:configChanges="keyboardHidden|orientation|screenSize"
        android:theme="@style/LaunchScreenTheme">
...