gpt4 book ai didi

隐藏的Android EditText

转载 作者:搜寻专家 更新时间:2023-11-01 07:37:54 25 4
gpt4 key购买 nike

在 Android 中,我有一个父级 RelativeLayout。我在里面有一个 ScrollView --> TableLayout

TableLayout 包含大约 25 个表单项(TextView : EditText)组合。

这里的问题是,无论何时选择 EditText,SoftInput 键盘都会隐藏 EditText,因此用户无法查看他正在键入文本的位置。

示例布局文件。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:gravity="fill"
android:orientation="vertical" >

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/retailinfoscroller"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/logininputtime"
android:layout_marginTop="10dip"
android:scrollbars="vertical" >

<TableLayout
android:id="@+id/newstoreregtable"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fadeScrollbars="true"
android:stretchColumns="1" >

<TableRow >

<TextView
android:layout_width="120dip"
android:layout_gravity="center_vertical"
android:layout_marginBottom="5dip"
android:layout_marginLeft="10dip"
android:layout_marginTop="5dip"
android:gravity="right"
android:text="@string/strretailerid"
android:textColor="#000000"
android:textSize="16dip" />

<EditText
android:id="@+id/editretailerid"
android:layout_width="120dip"
android:layout_height="45dip"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_marginTop="5dip"
android:layout_weight="0.6"
android:background="@drawable/edittextsample"
android:clickable="false"
android:cursorVisible="false"
android:editable="false"
android:singleLine="true" >
</EditText>
</TableRow>

<TableRow></TableRow>
</TableLayout>
</ScrollView>
</RelativeLayout>

基本上,我只想让我的 EditText 在用户想要输入时可见。

我浏览了论坛,但找不到修复程序。

最佳答案

在 list 中,在 Activity 标签下添加 android:windowSoftInputMode="adjustResize"..

关于隐藏的Android EditText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8238258/

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