gpt4 book ai didi

Android:当 EditText 输入类型为数字时键盘闪烁

转载 作者:太空宇宙 更新时间:2023-11-03 11:24:25 24 4
gpt4 key购买 nike

我有一个列表项的布局。在该布局列表项中,我有一个输入类型为数字的编辑文本。

我的问题是,当我点击编辑文本时,键盘闪烁,显示正常的字母数字键盘和数字键。

我不明白为什么会这样。

布局.xml

  <EditText
android:id="@+id/edit_quantity"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/total"
android:layout_centerHorizontal="true"
android:background="@color/bg_white"
android:gravity="center"
android:inputType="number"
android:maxLength="4"
android:maxLines="1"
android:minWidth="@dimen/view_cart_count_min_width"
android:paddingLeft="@dimen/padding_normal"
android:paddingRight="@dimen/padding_normal"
android:textSize="@dimen/text_medium" />

list .xml

    <activity
android:name="com.manoramaonline.entedeal.MyCartActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize|stateVisible" >
</activity>

当我将 softInputMode 更改为 adJustPan 时,键盘 flickirinf 停止,但屏幕未调整大小。因此键盘位于布局之上。

当 android:windowSoftInputMode 调整调整大小与编辑文本输入类型编号时键盘闪烁

我有什么解决方案可以在打开软键盘时缩小屏幕尺寸。

最佳答案

我遇到了类似的问题。我在列表适配器中有一个编辑文本。在 ExitText 的 xml 中,我有android:inputType="numberDecimal".

在 list 文件中,我为 Activity 添加了以下行:android:windowSoftInputMode="stateHidden|adjustNothing"当我选择一个编辑框时,它只显示数字键盘(并停止了所有的抖动)。

这是我从问题 28674967 中得到的。

关于Android:当 EditText 输入类型为数字时键盘闪烁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39031941/

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