Я искал все сообщения, относящиеся к этой теме, но все еще не мог найти никакого решения.
У меня есть один большой макет, и он прокручивается с помощью ScrollView, и он также имеет EditText с прокруткой.
Если я пытаюсь прокрутить текст редактирования, макет начинает прокручиваться. Как я могу это решить?
<?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" >
<ScrollView
android:id="@+id/lroot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fillViewport="true"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/img6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:gravity="right"
android:onClick="runInfo"
android:src="@drawable/info_btn" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/splash" />
<!-- Scrollable EditText -->
<EditText
android:id="@+id/EditText01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:autoLink="all"
android:background="@drawable/isim_soyisim"
android:clickable="true"
android:cursorVisible="true"
android:gravity="left|top"
android:scrollbars="vertical"
android:inputType="textMultiLine"
android:longClickable="false"
android:maxLines="5"
android:singleLine="false"
/>
</LinearLayout>
</ScrollView>
</LinearLayout>