我希望文本视图保持相同的大小,如果看不到整个字符串也没关系
您可以android:singleLine
参考singleLine使用。
我可以让建议列表视图填满屏幕的宽度吗?
不要认为你可以通过使用 AutoCompleteTextView。您可以寻求用户:Bill Gary的建议,通过添加一个android:imeOptions="actionGo"
,您可以Go
在软键盘上拥有一个按钮。然后,在您的 Activity 上,添加OnEditorActionListener
到您的 AutoCompleteTextView :
actv.setOnEditorActionListener(new OnEditorActionListener() {
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
// TODO Auto-generated method stub
if (actionId == EditorInfo.IME_ACTION_GO) {
Toast.makeText(MainActivity.this, "GO", Toast.LENGTH_SHORT).show();
return true;
}
return false;
}
});