Friday, 23 August 2013

EditText not scrollable inside the Listview?

EditText not scrollable inside the Listview?

I have ListView which is also scrollable and inside it there is MultiLine
EditText which is not scrollable properly when I wanted to scroll the
EdiText then Listview's scroll works while I wanted to scroll the Editext.
so please suggest some good ways to handle this.
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<EditText
android:id="@+id/et_address"
style="@style/Text.Medium"
android:layout_width="0dp"
andr`enter code here`oid:layout_height="wrap_content"
android:layout_weight="9"
android:gravity="top"
android:hint="@string/address"
android:inputType="textMultiLine|textCapSentences"
android:maxHeight="75dp"
android:maxLength="256"
android:minLines="2"
android:scrollbars="vertical"
/>
</LinearLayout>

No comments:

Post a Comment