将布局元素移出屏幕Android Xml

时间:2016-08-27 09:46:44

标签: android xml android-layout

我有一个看起来像这样的布局: enter image description here

在顶部,我有一个ChipView(一个视图组根据其中的内容调整自身大小)

和它的底部我有一个editText,然后是另一个视图(包含2个按钮)

到目前为止一切都很好。

但是当我开始在editText中输入(编辑)时,它的外观如下:

enter image description here

以上是完全没问题的我的EditText调整了自己的大小,让其他元素在布局中可见,但问题在我的chipView中有大量内容时开始(布局在顶部)

当我在我的第一个布局中添加了内容时,EditText自行调整大小,当编辑editText时,它变得不可见,因为chipView占用了所有空间

enter image description here

enter image description here

所以我的问题是如何在编辑开始时调整chipView的大小以便我的EditText可见

我的活动的清单:

this.close

我的Xml of Activity

    <activity android:name=".myActivity"
        android:theme="@style/AppTheme.NoActionBar"
        android:configChanges="orientation|keyboardHidden|screenSize|screenLayout"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustResize|stateAlwaysHidden"/>

0 个答案:

没有答案