我有一个简单的Android布局和代码,但是当我点击它时键盘总是与AutoCompleteTextView
重叠。
注意:ScrollView内部的AutoCompleteTextView。
注意:平台是6.0.1
package com.example.jason_wu.search;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.AutoCompleteTextView;
public class Main2Activity extends AppCompatActivity {
private AutoCompleteTextView mAtv;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main2);
mAtv = (AutoCompleteTextView) findViewById(R.id.location_auto_complete);
//issue 1
//mAtv.setBackground(getDrawable(R.drawable.search_input_focus));
//issue 2
mAtv.setHeight(300);
}
}
和我的AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.jason_wu.search">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name="com.example.jason_wu.search.Main2Activity"
android:windowSoftInputMode="adjustPan"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
Layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/scrollView" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="800dp"
android:text="Large Text"
android:id="@+id/textView"/>
<AutoCompleteTextView
android:id="@+id/location_auto_complete"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_below="@+id/textView"
android:background="@color/transparent"
android:dropDownAnchor="@+id/location_auto_complete"
android:dropDownHeight="wrap_content"
android:dropDownVerticalOffset="1dip"
android:fontFamily="sans-serif-light"
android:hint="@string/new_notification_location_hint"
android:imeOptions="actionSearch"
android:inputType="textUri"
android:dropDownSelector="@color/location_bg_select"
android:popupBackground="@color/location_bg_notselect"
android:singleLine="true"
android:textColor="#FFFFFF"
android:alpha="0.2"
android:textColorHint="#999999"
android:textCursorDrawable="@null"
android:textSize="15sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="100dp"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Large Text"
android:id="@+id/textView2"
android:layout_below="@+id/location_auto_complete" />
</RelativeLayout>
</ScrollView>
</RelativeLayout>
答案 0 :(得分:2)
尝试限制下拉项目以显示
一种方法是限制要显示的下拉项目。但是没有这样的正确方法来显示maximumSuggestions选项的数量,但你可以应用的技巧是获取其中一行的高度并将其乘以(要显示的行数)次并使用{{1设置它的高度。
setDropDownHeight类的方法AutoCompleteTextView。你可以看到它们并使用它们。
如果您对建议项目的高度感到困惑或不确定,可以自定义此项。看看how to set custom height.
答案 1 :(得分:1)
将此属性尝试到AndroidManifest.xml中的活动
android:windowSoftInputMode="stateHidden|adjustPan"
看起来应该是这样的。
<activity
android:name="com.myexample.TestActivity"
android:label="@string/login_screen"
android:screenOrientation="portrait" // well you can change the orientation if you want
android:windowSoftInputMode="stateHidden|adjustPan" />
要播放的属性是windowSoftInputMode
尝试不同的值,因为在一定时间后您可能需要不同的输出。
adjustPan
活动的主窗口未调整大小以便为软键盘腾出空间。相反,窗口的内容会自动平移,以便键盘不会遮挡当前焦点,用户可以随时看到他们正在键入的内容。这通常不如调整大小,因为用户可能需要关闭软键盘才能进入并与窗口的模糊部分进行交互。
adjustResize
活动的主窗口始终调整大小,以便为屏幕上的软键盘腾出空间。
stateHidden
当用户选择活动时隐藏软键盘 - 也就是说,当用户肯定地向前导航到活动时,而不是因为离开另一个活动而退回到活动中。
您可以在activity-element documentation
上找到更多详情更新
我写了一些可能对您有帮助的内容,layout
上提供了布局<?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:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="activities.list.first.TestLayoutActivity">
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:layout_weight="1">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.6"
android:orientation="vertical">
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Text" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.4"
android:orientation="vertical">
<AutoCompleteTextView
android:id="@+id/TestLayoutActivity_autoCompleteTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:completionThreshold="1"
android:drawableLeft="@android:drawable/ic_menu_search"
android:text="" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
的AndroidManifest.xml
<activity
android:name="activities.list.first.TestLayoutActivity"
android:label="@string/title_activity_test_layout"
android:windowSoftInputMode="stateHidden|adjustPan"
/>
代码位于code
String[] list = {"match1", "match2", "match3",
"match12", "match11", "match8", "match7", "match4",
"match13", "match10", "match9", "match6", "match5",};
AutoCompleteTextView autoCompleteTextView = (AutoCompleteTextView) findViewById(R.id.TestLayoutActivity_autoCompleteTextView);
ArrayAdapter<String> adapter
= new ArrayAdapter<String>(getApplicationContext(), R.layout.simple_list_item_1, list);
autoCompleteTextView.setAdapter(adapter);
Before
After
[
答案 2 :(得分:0)
键盘行为是滚动视图以关闭文本区域的底部。
最后,我们必须使用android:gravity="bottom"
属性来解决UI问题,但我们需要考虑UX,例如:提示。
所以,解决方案是听onClick()
,对于键盘问题,我们必须使用动态方法来设置引力。