android - windowSoftInputMode 问题

Posted

技术标签:

【中文标题】android - windowSoftInputMode 问题【英文标题】:android - windowSoftInputMode issue 【发布时间】:2017-10-05 18:30:07 【问题描述】:

如何在打开软输入时在红色区域显示相对布局?我尝试了 adjustPan 和 adjustResize 输入模式,但没有发生。有什么想法吗?


【问题讨论】:

【参考方案1】:

首先,将 android:windowSoftInputMode="adjustResize" 添加到 manifest.xml 中的活动中。

然后创建如下布局。

作为家长,使用RelativeLayout 放入 2 个子项(滚动视图和底视图) 底视图aligned to bottom。 ScrollView 位于底部视图 above
<RelativeLayout
    android:layout_
    android:layout_>
    <ScrollView
        android:layout_above="@+id/bottomView"
        android:layout_
        android:layout_>

        //scrollable content
    </ScrollView>

    <RelativeLayout
        android:id="@+id/bottomView"
        android:layout_alignParentBottom="true"
        android:layout_
        android:layout_>

        //your bottom content
    </RelativeLayout >
</RelativeLayout>

【讨论】:

以上是关于android - windowSoftInputMode 问题的主要内容,如果未能解决你的问题,请参考以下文章

windowSoftInputMode问题

Android逆向系列文章— Android基础逆向

Android 逆向Android 权限 ( Android 逆向中使用的 android.permission 权限 | Android 系统中的 Linux 用户权限 )

Android 逆向Android 权限 ( Android 逆向中使用的 android.permission 权限 | Android 系统中的 Linux 用户权限 )

android 21 是啥版本

Android逆向-Android基础逆向(2-2)