我的片段中有一个滚动视图,当片段打开时,键盘会自动出现并专注于布局的第一个编辑文本,并且屏幕滚动,在键盘打开时我无法看到所有字段。那么,我该怎么做才能防止片段启动时出现键盘,以及如何在打开键盘的情况下查看滚动视图中的所有字段呢?
谢谢
这是 XML 的一部分
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/personalDataLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true"
tools:context=".presentation.fragments.PersonalDataFragment">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
喵喔喔
相关分类