更改子项的可见性后,windowSoftInputMode =“adjustResize”无法正常工作

时间:2017-09-22 03:15:13

标签: android android-layout resize window-soft-input-mode

我遇到了windowSoftInputMode="adjustResize"setVisibility(View.VISIBLE)的问题。 adjustResize按预期工作,直到View的可见性发生变化。

因此,只要我不以编程方式更改任何内容的可见性,adjustResize就会按预期工作,但只要任何内容​​的可见性发生变化,它就会停止调整布局的大小。

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="ABC">

    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

    <application
        android:name=".App"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme">

        <activity
            android:name=".view.activity.MainActivity"
            android:theme="@style/AppTheme"
            android:windowSoftInputMode="adjustResize">
            <intent-filter>
                <action android:name="Main_ACTIVITY" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>

</manifest>

fragment.xml之

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    tools:context="ABC.view.fragment.Fragment">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="0.2"
            android:gravity="center">

            <de.hdodenhof.circleimageview.CircleImageView
                android:id="@+id/circleImg"
                style="@style/AppTheme.CircleImgList"
                android:layout_width="200dp"
                android:layout_height="200dp"
                android:layout_centerVertical="true"
                android:layout_centerHorizontal="true"/>

        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="0.8"/>

    </LinearLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:background="@color/colorPrimary"
        android:orientation="horizontal"
        android:layout_gravity="bottom"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:id="@+id/relativeLayout">

        <EditText
            android:id="@+id/editName"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/transparent"
            android:textColor="@color/white"
            android:hint="Enter Your Name"
            android:textColorHint="#AAFFFFFF"
            android:textSize="25sp"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_marginRight="10dp"
            android:layout_marginEnd="10dp"
            android:layout_marginLeft="10dp"
            android:layout_marginStart="10dp"
            android:inputType="textCapWords"
            android:maxLines="1"
            android:layout_gravity="start"
            android:layout_centerVertical="true"/>

        <TextView
            android:id="@+id/nextButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="NEXT"
            android:background="?attr/selectableItemBackgroundBorderless"
            android:textSize="20sp"
            android:textColor="@color/white"
            android:layout_marginEnd="20dp"
            android:layout_marginRight="20dp"
            android:layout_centerVertical="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true"
            android:clickable="true"
            android:visibility="gone"/>

    </RelativeLayout>

</RelativeLayout>

Fragment.java的onViewCreated

public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
    mCircleImgView = view.findViewById(R.id.circleImg);
    mEditName = view.findViewById(R.id.editName);
    mNextButton = view.findViewById((R.id.nextButton));

    mCircleImgView.setImageURI(mImageURI);

    mEditName.requestFocus();
    InputMethodManager imgr = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
    imgr.showSoftInput(mEditName, InputMethodManager.SHOW_IMPLICIT);

    //Change visibility of mNextButton
    mEditName.addTextChangedListener(new TextWatcher() {

        public void afterTextChanged(Editable s) {}

        public void beforeTextChanged(CharSequence s, int start, int count, int after) {}

        public void onTextChanged(CharSequence s, int start, int before, int count) {
            String text = mEditName.getText().toString();
            if (text.length() >= 1) {
                mNextButton.setVisibility(View.VISIBLE);
            }
            else {
                mNextButton.setVisibility(View.GONE);
            }
        }
    });
}

改变视图可见性后,如何停止调整布局大小的Gif: https://i.stack.imgur.com/WH9dn.gif

这种意外行为有什么办法可以解决吗?

2 个答案:

答案 0 :(得分:1)

检查您是否处于全屏模式或在主题中将translucentStatus设置为true,从而标记全屏模式。这使得adjustResize功能无法使用。

答案 1 :(得分:0)

我也面临同样的问题而且没有找到任何解决方案,如果紧急,那么暂时可以申请。

只要您更改视图的可见性,就可以使用此方法以编程方式调整布局大小。

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

希望这对你有所帮助。