我正在开发一个Android应用程序,其中我的mainActivity在FrameLayout中表示底部有5个制表符。每个选项卡指向一个特定的片段,该片段根据单击的选项卡加载。
在我的第一个标签中,我有一个EditText。当编辑文本被聚焦时,我需要通过移动(' EditText和Send按钮)" up"的布局来显示键盘。没有推高其他组件,包括底部标签框架布局。类似地,当隐藏键盘时,' EditText和Send btn'布局应位于选项卡框架布局的正上方。有人可以建议我解决这个问题吗?
(假设情况与Facebook评论相同。当我们进入帖子评论某些内容时,布局('写评论' ET和POST btn)将被推高,而不会移动任何其他组件,包括底部标签(' News Feed',' Requests',' Messenger',' Notifications',' More') )
我不想制作框架布局Visibility.Gone / Visible,因为当键盘向上/向下滑动时,它会以丑陋的动画结束。
答案 0 :(得分:1)
使用LinearLayout whit no weightSum,并在布局0dp高度和重量1
中显示主视图答案 1 :(得分:0)
我有完全相同的问题。我能找到的最佳解决方法(如原始问题中所提到的)如下所示。但这是一个边缘解决方案,而不是一个伟大的解决方案。
设置weightSum的问题是,如果包含编辑框的滚动视图较长,则该按钮将消失。最佳解决方案是允许按钮在普通视图中保持在页面底部,但在键盘屏幕上隐藏。
public boolean dispatchTouchEvent(MotionEvent event) {
View v = getCurrentFocus();
boolean ret = super.dispatchTouchEvent(event);
if (v instanceof EditText) {
View w = getCurrentFocus();
int scrcoords[] = new int[2];
w.getLocationOnScreen(scrcoords);
float x = event.getRawX() + w.getLeft() - scrcoords[0];
float y = event.getRawY() + w.getTop() - scrcoords[1];
if (event.getAction() == MotionEvent.ACTION_UP && (x < w.getLeft() || x >= w.getRight() || y < w.getTop() || y > w.getBottom()) ) {
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(getWindow().getCurrentFocus().getWindowToken(), 0);
layButton.setVisibility(View.VISIBLE);
}
else
{
layButton.setVisibility(View.GONE);
}
}
return ret;
}