android - How set scrollable view when softkeyword is pop up? -
i need show view textview work character counter , 2 edittext. 1 enter subject , other enter message.
but when keyboard displayed, view can not scrolled. keyboard hides lower part of view.
i need when keyboard displayed, view fits remaining space , allows user click , scroll view, similar view of compose mail of gmail.
here layout doesn't work me:
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <include android:id="@+id/toolbar" layout="@layout/toolbar" > </include> <scrollview android:layout_width="match_parent" android:layout_height="match_parent" android:isscrollcontainer="true" > <linearlayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > <android.support.v7.widget.appcompattextview android:id="@+id/caracter_counter" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="end" android:paddingbottom="5dip" android:paddingleft="5dip" android:paddingright="5dip" android:paddingtop="10dip" android:textappearance="@style/textappearance.appcompat.medium" android:textcolor="?android:textcolorprimary" /> <android.support.v7.widget.appcompatedittext android:id="@+id/subject" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginbottom="25dip" android:hint="subject" android:inputtype="textmultiline" android:maxlength="@integer/max_length" android:nextfocusdown="@+id/edit_message" android:textappearance="@style/textappearance.appcompat.medium" android:textcolor="?android:textcolorprimary" /> <android.support.v7.widget.appcompatedittext android:id="@+id/message" android:layout_width="fill_parent" android:layout_height="fill_parent" android:hint="message" android:inputtype="textmultiline" android:textappearance="@style/textappearance.appcompat.medium" android:textcolor="?android:textcolorprimary" /> </linearlayout> </scrollview> </linearlayout>
i have set android:windowsoftinputmode="adjustresize"
in manifest, not work.
like this:
edit
i try this, not work, softkeyword not push scrollview, second edittext cover softkeyword.
<?xml version="1.0" encoding="utf-8"?> <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <include android:id="@+id/toolbar" layout="@layout/toolbar" > </include> <scrollview android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_below="@id/toolbar" android:fillviewport="true" > <linearlayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" android:weightsum="3" > <android.support.v7.widget.appcompattextview android:id="@+id/caracter_count" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="end" android:layout_weight="0.2" android:paddingbottom="5dip" android:paddingleft="5dip" android:paddingright="5dip" android:paddingtop="10dip" android:text="@string/app_name" android:textappearance="@style/textappearance.appcompat.medium" android:textcolor="?android:textcolorprimary" /> <android.support.v7.widget.appcompatedittext android:id="@+id/edit_subject" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginbottom="25dip" android:layout_weight="0.5" android:hint="subject" android:inputtype="textmultiline" android:maxlength="@integer/max_length" android:nextfocusdown="@+id/edit_message" android:textappearance="@style/textappearance.appcompat.medium" android:textcolor="?android:textcolorprimary" /> <android.support.v7.widget.appcompatedittext android:id="@+id/edit_message" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="2.3" android:hint="message" android:inputtype="textmultiline" android:textappearance="@style/textappearance.appcompat.medium" android:textcolor="?android:textcolorprimary" /> </linearlayout> </scrollview> </relativelayout>
get this:
i try combination android:windowsoftinputmode="statevisible|adjustresize|adjustpan"
in manifest.
what doing wrong?
thanks in advance.
i have met same problem. used relative layout fix instead of linear layout , worked expected. may try relative layout. won't difficult since not complex layout hierarchy.
edit
i tried given xml code. did not modification java code. deleted weights in components.
<?xml version="1.0" encoding="utf-8"?> <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <!-- replaced toolbar textview testing --> <textview android:id="@+id/toolbar" android:layout_width="wrap_content" android:layout_height="wrap_content" > </textview> <scrollview android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_below="@id/toolbar" android:fillviewport="true" > <linearlayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" > <!-- deleted weightsum --> <textview android:id="@+id/caracter_count" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="end" android:paddingbottom="5dip" android:paddingleft="5dip" android:paddingright="5dip" android:paddingtop="10dip" android:text="@string/app_name" android:textcolor="?android:textcolorprimary" /> <!-- deleted weightsum --> <edittext android:id="@+id/edit_subject" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginbottom="25dip" android:hint="subject" android:inputtype="textmultiline" android:nextfocusdown="@+id/edit_message" android:textcolor="?android:textcolorprimary" /> <!-- deleted weightsum --> <edittext android:id="@+id/edit_message" android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="message" android:inputtype="textmultiline" android:textcolor="?android:textcolorprimary" /> <!-- deleted weightsum --> </linearlayout> </scrollview> </relativelayout>
try this. think looking for. have remove weights if ok requirements.
Comments
Post a Comment