我有文本区域,一直到“确定”和“取消”按钮。当我单击文本区域时,键盘出现并专注于文本区域,按钮隐藏在键盘后面。
我希望当文本区域获得焦点滚动一点并且在选择文本区域 id 时也显示底部按钮。
我自己修好了:D以下是代码
当文本字段获得焦点时,我调用了以下方法
private final void focusOnButtons(){
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
ScrollView sv = (ScrollView)findViewById(R.id.scrl);
sv.scrollTo(0, sv.getBottom());
}
},1000);
}
您可以尝试将现有布局包装在 ScrollView 中:
https
://developer.android.com/reference/android/widget/ScrollView.html
您的布局 xml 文件可能如下所示:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01" android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<EditText android:text="@string/hello" android:id="@+id/EditText01"
android:layout_width="wrap_content" android:layout_height="wrap_content">
</EditText>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Button android:text="@+id/Button01" android:id="@+id/Button01"
android:layout_width="wrap_content" android:layout_height="wrap_content">
</Button>
<Button android:text="@+id/Button02" android:id="@+id/Button02"
android:layout_width="wrap_content" android:layout_height="wrap_content">
</Button>
</LinearLayout>
</LinearLayout>
</ScrollView>
评论回复:
您可能想查看此页面:
https ://developer.android.com/training/keyboard-input/index.html
我认为您想要的结果可以通过将按钮移到 Scrollview 之外并设置android:windowSoftInputMode="adjustResize"
活动来实现。
我会从解决方案中调整一些东西:
1.- 用smoothScroll代替硬滚动
2.- 将延迟从 1000 减少到 300(足够)
OnFocusChangeListener onFocus = new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
scrollView.smoothScrollTo(0, scrollView.getBottom());
}
},300);
}
};