gpt4 book ai didi

android - 无法使用键盘导航导航到 ScrollView 之外的按钮

转载 作者:行者123 更新时间:2023-12-03 17:23:35 24 4
gpt4 key购买 nike

我有一个布局,其中有页眉、页脚和 ScrollView
这是我的布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:id="@+id/header"
android:text="@string/player_settings" />

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/footer"
android:layout_below="@id/header">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/text_margin"
android:orientation="vertical">

.....

<Button
android:id="@+id/start"
android:layout_marginStart="@dimen/text_margin"
android:layout_marginTop="@dimen/text_margin"
android:paddingStart="@dimen/button_padding"
android:paddingEnd="@dimen/button_padding"
android:text="Start" />

<Button
android:id="@+id/close"
android:layout_marginStart="@dimen/text_margin"
android:layout_marginTop="@dimen/text_margin"
android:layout_marginBottom="32dp"
android:paddingStart="@dimen/button_padding"
android:paddingEnd="@dimen/button_padding"
android:text="Close"
android:nextFocusDown="@+id/save"/>

</LinearLayout>

</ScrollView>

<LinearLayout
android:id="@+id/footer"
android:layout_alignParentBottom="true">

<Button
android:id="@+id/save"
android:layout_marginStart="16dp"
android:text="Save" />

</LinearLayout>

</RelativeLayout>
该应用程序将与键盘一起使用,因此我使用箭头按钮进行导航,当我到达 ScrollView 的底部时 close按钮它应该转到保存按钮,但它只是停留在关闭按钮。如您所见,我什至设置了 nextFocusDown成为保存按钮,但它仍然不去。
任何想法为什么它卡在按钮上并且从不导航到 ScrollView 之外的保存按钮?

最佳答案

我尝试使用模拟器和笔记本电脑键盘向下箭头。我的模拟器设置设置为使用物理键盘。有用。

关于android - 无法使用键盘导航导航到 ScrollView 之外的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63906575/

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