我希望能够在不调整大小的情况下打开键盘。我不想使用adjustNothing
,因为我需要一个底部视图来提升键盘。我也不想使用adjustPan
,因为这会将整个布局从屏幕上抬起来,这有点难看。
所以,我将我的布局(ConstraintLayout
)包裹在ScrollView
中,如此:
<?xml version="1.0" encoding="utf-8"?>
<layout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<variable
name="viewModel"
type="com.mypackage.MyViewModel"/>
</data>
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:scrollbars="none">
<!-- I don't want anything in this ConstraintLayout to move or resize when I open the keyboard, hence why I wrapped it in a ScrollView. -->
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/scene_container"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/guideline"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:id="@+id/scene"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:adjustViewBounds="true"
android:background="@color/black"
android:scaleType="fitCenter"
android:src="@drawable/grumpy"/>
</FrameLayout>
<android.support.constraint.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent=".7"/>
<View
android:id="@+id/status_bar"
android:layout_width="0dp"
android:layout_height="48dp"
android:background="@color/colorPrimary"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/guideline"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="48dp"
android:clipToPadding="false"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/status_bar"/>
</android.support.constraint.ConstraintLayout>
</ScrollView>
<!-- The bottom sheet contains a 48dp high peekable area (a bar with an EditText) that I need to raise with the keyboard. -->
<include
android:id="@+id/bottom_sheet"
layout="@layout/bottom_sheet"
app:viewModel="@{viewModel}"/>
</android.support.design.widget.CoordinatorLayout>
这在我调出键盘的前两次工作正常。这是我遇到的奇怪问题。每次 THIRD 时间我都会调出键盘,我的布局会调整大小并一起搜索,就像ScrollView
不在那里一样。每次 THIRD 时间都会出现这种情况,这样我打开键盘就像这样:
1) Open keyboard. Layout remains same size.
Close keyboard.
2) Open keyboard. Layout remains same size.
Close keyboard.
3) Open keyboard. *LAYOUT RESIZES/SQUISHES TOGETHER!*
Close keyboard.
The above cycle repeats as I continue to open/close the keyboard.
任何想法如何解决这个问题?为什么每次打开键盘时布局会调整大小?
答案 0 :(得分:3)
实际上,如果您使用match_parent
作为ScrollView
子项的大小,则当键盘出现并符合ScrollView
大小时,它也会调整大小。
要了解ScrollView
的工作原理,您可以考虑使用浏览器。在您输入的每个链接上,如果页面不适合您的浏览器窗口,您将看到滚动条,让您在页面中导航。
ScrollView
是相同的,你只需要给它们在屏幕上占据你想要的大小(比如浏览器窗口),你就可以将所有内容放入其中(如网站页面),即使它是&#39;大于ScrollView
大小。
根据这一点,您的ConstraintLayout
需要固定的尺寸。如果您只希望用户访问其中的所有组件,则可以是wrap_content
。
这不是你的情况。您希望它保持原始大小,也就是我在您的代码中看到的,也就是您的第一个CoordinatorLayout
的大小。
我发现将内部ConstraintLayout
修复为原始视图大小的唯一方法是使用代码。
让我们简化一下例子的xml:
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:id="@+id/parentView"
android:layout_height="match_parent">
<ScrollView
android:id="@+id/scrollViewItem"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.constraint.ConstraintLayout
android:id="@+id/childView"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!--ALL YOUR ITEMS-->
</android.support.constraint.ConstraintLayout>
</ScrollView>
</android.support.design.widget.CoordinatorLayout>
您需要在加载屏幕时修复childView大小。
在onCreate
上,您可以添加以下代码:
private int first = 0;
public class ConstaintLayoutCanScroll extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
first = childView.getMeasuredHeight();
final CoordinatorLayout parentView = findViewById(R.id.parentView);
parentView.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
@Override
public boolean onPreDraw() {
if (first < parentView.getMeasuredHeight()) {
ConstraintLayout childView = findViewById(R.id.childView);
childView.setMinHeight(parentView.getMeasuredHeight());
first = childView.getMeasuredHeight();
}
return true;
}
});
}
}
我使用监听器,因为在OnCreate
,大小不是init。
first
在这里是因为onPreDraw
只被机器人调用一次。它是我默认修复为0的类的变量。
答案 1 :(得分:0)
使用match_parent
作为ScrollView
孩子的大小并不理想。您应该使用固定大小或wrap_content
。在您当前的设置中,ConstraintLayout
会尝试将其高度设置为ScrollView's
高度,这会根据显示的键盘而改变。
您可以尝试将ConstraintLayout
设置为固定高度,只要它在屏幕上显示即可。
要测试该方法是否有效,您可以尝试设置,例如android:layout_height="400dp"
上的ConstraintLayout
,看看&#34;周期&#34;你提到过会发生与否。
如果可行,您可以继续使用与屏幕尺寸相匹配的ConstraintLayout
的实际尺寸。