gpt4 book ai didi

android - 软键盘与 TabHost 中的 EditText 重叠

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

我知道之前有人问过类似的问题,但我不知道如何处理我的布局。

问题:当向其添加多行时,键盘会与 AutoCompleteTextView 重叠。我试过将所有内容包装在 ScrollView 中等等,但这没有帮助。 enter image description here任何帮助,将不胜感激。

提前致谢

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<HorizontalScrollView
android:id="@+id/tabsScroll"
android:layout_width="fill_parent"
android:fadingEdge="horizontal"
android:fillViewport="true"
android:layout_height="wrap_content"
android:scrollbars="@null">
<TabWidget
android:id="@android:id/tabs"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0" />
</HorizontalScrollView>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<ScrollView
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/scrollView1">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/InputOuterContainer"
android:layout_alignParentBottom="true">
<View
android:background="#ffcccccc"
android:layout_width="fill_parent"
android:layout_height="1.0px" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:background="#FFFFFF"
android:layout_height="wrap_content"
android:id="@+id/InputContainer">
<AutoCompleteTextView
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" />
<ImageButton
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" />
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
</TabHost>

最佳答案

好的,在您的 list 中,将android:windowSoftInputMode 添加到您的 Activity 中,

检查这个:http://developer.android.com/guide/topics/manifest/activity-element.html#wsoft

然后将android:windowSoftInputMode设置为adjustPanadjustResize

关于android - 软键盘与 TabHost 中的 EditText 重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15254621/

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