gpt4 book ai didi

Android webview 滚动问题

转载 作者:行者123 更新时间:2023-11-30 00:29:41 28 4
gpt4 key购买 nike

我如何处理 webview 中的滚动,以便当光标低于特定行时,光标自动滚动到它上面。是否有任何功能,因为它可以由 IO 处理,但我没有找到适用于 android 的任何功能。

最佳答案

很高兴能帮助您解决这个问题!

解决方法很简单!我正在使用相同的富编辑器。

我遇到了同样的问题,我通过删除 ScrollView 解决了这个问题。

您需要做的是在您的布局上创建一个线性布局,并在其中放置编辑器。只有一件事你应该包括在线性布局中作为标签:

android:windowSoftInputMode="adjustPan|adjustResize"

这是我的布局(注意:我改了控件的名字)

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="15dp"
android:layout_marginBottom="115dp"
android:windowSoftInputMode="adjustPan|adjustResize"
android:background="@drawable/background_container_corner_white"
android:layout_alignParentTop="true">

<com.glaucioleonardo.wcmauditor.activities.editor.RichEditor
android:id="@+id/editor"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"/>

</LinearLayout>

您不需要在线性布局中使用这些标签。我只是根据我的应用程序使用它们来格式化

android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="15dp"
android:layout_marginBottom="115dp"
android:background="@drawable/background_container_corner_white"
android:layout_alignParentTop="true"

现在一切正常!如果没有解决你的问题,请贴出你的布局,会更容易帮助到你!

关于Android webview 滚动问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44669242/

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