可能重复 Android : autocompletetextview, suggestion list displays above the textview?
我完全试图在用户滚动建议列表时显示在键盘上重叠的建议列表,但它始终打开。
在这里我得到了这样的方式
这是我的清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sl"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".SuggestionListActivity"
android:windowSoftInputMode="adjustResize|adjustPan|stateHidden">
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
这是我的main.xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" android:padding="10dp">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:layout_margin="10dp"/>
<TextView android:layout_margin="10dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is testing for the auto complete textview in this application to display suggestion list overlapping on keyboard." />
<AutoCompleteTextView android:id="@+id/autocomplete"
android:layout_width="fill_parent" android:layout_margin="5dp"
android:layout_height="wrap_content" android:hint="Search"
android:layout_marginLeft="5dp" android:dropDownHeight="300dp"
android:inputType="textAutoComplete" android:singleLine="true"
/>
</LinearLayout>
此代码中的操作如何在列表为焦点时显示键盘上的建议。
答案 0 :(得分:10)
我以前遇到过这个问题。对我来说,AutocompleteTextView
以上的屏幕空间比下面(在“普通”设备上测试)更多,因此列表向上打开。我稍微调整了我的布局,以便AutocompleteTextView
下面有更多的空间,它开始向下打开。这就是为我解决的问题。
答案 1 :(得分:6)
您可以调整布局,以便在AutoCompleteTextView
或
您可以更改下拉高度android:dropDownHeight
并设置一些高值,
如果它位于scrollView
内且AutoCompleteTextView
位于顶部附近,则会有效。
要显示焦点上的选项列表,请执行以下操作
autoCompleteTextView.setOnFocusChangeListener(new OnFocusChangeListener() {
public void onFocusChange(View v, boolean hasFocus) {
if(hasFocus) {
autoCompleteTextView.showDropDown();
}
}
});
当用户关注AutoCompleteTextView
答案 2 :(得分:3)
诀窍是确保所需的下拉高度永远不会大于下面的可用空间。我的方法是创建一个覆盖showDropDown
的子类:
public class DownOnlyAutoCompleteTextView extends AppCompatAutoCompleteTextView {
private final static int MINIMAL_HEIGHT = 50;
public DownOnlyAutoCompleteTextView(Context context) {
super(context);
}
public DownOnlyAutoCompleteTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public DownOnlyAutoCompleteTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public void showDropDown() {
Rect displayFrame = new Rect();
getWindowVisibleDisplayFrame(displayFrame);
int[] locationOnScreen = new int[2];
getLocationOnScreen(locationOnScreen);
int bottom = locationOnScreen[1] + getHeight();
int availableHeightBelow = displayFrame.bottom - bottom;
if (availableHeightBelow >= MINIMAL_HEIGHT) {
setDropDownHeight(availableHeightBelow);
}
super.showDropDown();
}
}
然后在你的布局中使用它,例如:
<your.package.DownOnlyAutoCompleteTextView
android:id="@+id/auto_complete_text_view"
android:layout_margin="12dp"
android:hint="AutoComplete"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:ignore="HardcodedText" />
调整MINIMAL_HEIGHT
以符合您的要求 - 如果下方没有或只有很小的空间,最好不要强制解决问题。
答案 3 :(得分:0)
只需将android:dropDownHeight="100dp"
添加到布局文件中的AutoCompleteTextView
标记,我猜是最好的解决方案!它将简单地控制下拉高度的高度并允许我们滚动!
<AutoCompleteTextView
android:id="@+id/acetxt_assignclient"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:dropDownHeight="100dp">
</AutoCompleteTextView>
答案 4 :(得分:0)
这是我的解决方案
//add input fields
$(".addInput").click(function() {
var input = $('your-id-here').val();
alert(input);
});
键盘显示建议列表列在上面的AutoCompletionTextView。
答案 5 :(得分:0)
使用:android:dropDownHeight="wrap_content" in AutoCompleteTextView
答案 6 :(得分:0)
我发现,如果您使用的是嵌套滚动视图,则更容易打开上方或下方的视图,因为它认为合适,而当您使用常规滚动视图时,它会在下方打开。
答案 7 :(得分:-2)
在Scrollview中设置包含Autocompletetextview的完整版面
这将解决您的问题!