This question already has an answer here:
- android: ViewPager and HorizontalScrollVIew 11 answers
Is it possible to scroll inside an EditText which is in a ScrollView
?
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- scroll inside this EditText -->
<EditText android:id="@+id/et_scrollhere"
android:lines="6"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="Voorbeeld"
android:layout_margin="5dp"
android:scrollbars="vertical"
android:inputType="textMultiLine"/>
</LinearLayout>
</ScrollView>
Or is it possible to have the EditText embedded in the keyboard in portrait mode? Something like WhatsApp, that EditText is scrollable.