gpt4 book ai didi

键盘启动时Android ScrollView不滚动

转载 作者:IT老高 更新时间:2023-10-28 23:18:28 25 4
gpt4 key购买 nike

我有一个没有填满屏幕的 View ,但是当键盘出现时,您不能向下滚动到现在覆盖的几个字段。我尝试在 list 和类中添加adjustSize、adjustPan。 xml 类似于以下条目:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/s"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
>

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/TableLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<!-- TextViews & EditTexts are here -->
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<!-- TextViews & EditTexts are here -->
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<!-- TextViews & EditTexts are here -->
</TableRow>
<TableRow
android:id="@+id/tableRow4"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<!-- TextViews & EditTexts are here -->
</TableRow>
<TableRow
android:id="@+id/tableRow5"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<!-- TextViews & EditTexts are here -->
</TableRow>



</TableLayout>
</ScrollView>

当键盘出现时,我需要能够滚动浏览editTexts和TextViews

最佳答案

Flipbed 的链接提供的是您的解决方案的答案。如果您只是将“adjustResize”添加到 list 中的 Activity ,则无需实现解决方法。您之前遇到的问题是您使用的是adjustPan。在 adjustPan 不调整窗口大小的地方,它平移 View ,以便任何有焦点的东西都不会被软键盘遮挡。如果您查看 Google 的文档(请参阅下面的链接),这将是有意义的。

例子:

<activity android:name="YourActivity" 
android:windowSoftInputMode="adjustResize" />

http://developer.android.com/guide/topics/manifest/activity-element.html#wsoft

关于键盘启动时Android ScrollView不滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17556334/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com