我有一个登录片段,上面是一个“返回”按钮(一个文本视图),下面是一个带有文本输入的滚动视图。当我单击其中一个时,键盘会出现并将所有内容向上移动。但是,我希望后退按钮始终可见。我怎样才能做到这一点?
我尝试玩 windowSoftInputMode 但没有得到想要的结果。
<RelativeLayout
android:id="@+id/backC"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/backbutton"
style="@style/backbuttonstyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
/>
</RelativeLayout>
<ScrollView
android:id="@+id/signupscroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/backC"
>
//stuff is here
</RelativeLayout>
</ScrollView>