代码之家  ›  专栏  ›  技术社区  ›  VLeonovs

打开软键盘时不收缩图像视图或背景

  •  2
  • VLeonovs  · 技术社区  · 6 年前

    当键盘打开时,背景会收缩。查看报价:

    enter image description here

    活动有 android:windowSoftInputMode="adjustResize"

    还有我的布局:

    <android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
    
            <ImageView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:background="@drawable/background"
                android:scaleType="center"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />
    
            <FrameLayout
                android:id="@+id/container"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent" />
    
        </android.support.constraint.ConstraintLayout>
    </layout>
    

    如何预防这种情况?

    1 回复  |  直到 6 年前
        1
  •  0
  •   Android Thanh Cao    6 年前

    试试这个,

    在你的活动中 Manifest 将活动视图声明为

    android:windowSoftInputMode="adjustResize|stateHidden"
    

    然后遵循以下代码:

    Bitmap bmImg; // Load a bitmap into bmImg 
    BitmapDrawable background = new BitmapDrawable(bmImg); 
    background.setGravity(Gravity.TOP); 
    this.setBackgroundDrawable(background);