我是靠谱客的博主 玩命小兔子,最近开发中收集的这篇文章主要介绍android edittext tab键 输入,android – 软键盘与TabHost中的EditText重叠,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我知道以前曾问过类似的问题,但我无法弄清楚如何处理我的布局.

问题:

当向其添加许多行时,键盘与AutoCompleteTextView重叠.我试过在scrollview等中包装所有东西,但这没有帮助.

任何帮助,将不胜感激.

提前致谢

android:id="@android:id/tabhost"

android:layout_width="match_parent"

android:layout_height="match_parent">

android:orientation="vertical"

android:layout_width="match_parent"

android:layout_height="match_parent">

android:id="@+id/tabsScroll"

android:layout_width="fill_parent"

android:fadingEdge="horizontal"

android:fillViewport="true"

android:layout_height="wrap_content"

android:scrollbars="@null">

android:id="@android:id/tabs"

android:orientation="horizontal"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_weight="0" />

android:id="@android:id/tabcontent"

android:layout_width="0dp"

android:layout_height="0dp"

android:layout_weight="0" />

android:id="@+id/pager"

android:layout_width="match_parent"

android:layout_height="0dp"

android:layout_weight="1" />

android:minWidth="25px"

android:minHeight="25px"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:id="@+id/scrollView1">

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:id="@+id/InputOuterContainer"

android:layout_alignParentBottom="true">

android:background="#ffcccccc"

android:layout_width="fill_parent"

android:layout_height="1.0px" />

android:orientation="horizontal"

android:layout_width="fill_parent"

android:background="#FFFFFF"

android:layout_height="wrap_content"

android:id="@+id/InputContainer">

android:id="@+id/InputTextView"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:hint="@string/Ready"

android:layout_weight="1.0"

android:imeOptions="actionGo"

android:inputType="textNoSuggestions"

android:selectAllOnFocus="true"

android:focusable="true" />

android:id="@+id/ButtonRun"

android:paddingLeft="16.0dip"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:src="@drawable/go"

android:scaleType="center"

style="?android:attr/borderlessButtonStyle"

android:layout_gravity="top" />

解决方法:

好的,在您的清单中,将android:windowSoftInputMode添加到您的活动中,

然后将android:windowSoftInputMode设置为adjustPan或adjustResize

标签:android,android-layout

来源: https://codeday.me/bug/20190703/1371077.html

最后

以上就是玩命小兔子为你收集整理的android edittext tab键 输入,android – 软键盘与TabHost中的EditText重叠的全部内容,希望文章能够帮你解决android edittext tab键 输入,android – 软键盘与TabHost中的EditText重叠所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部