I have created one activity which is containing one map,image image and otheranother text view,and i and I have added "scrollview" tag for it ...but But after the activity startedstarts it scrolls to the end of the page automatically....please Please tell me why this happendshappens and how to stop it formfrom moving to end so iI can scroll it by myself.
this is my code:
<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:orientation="vertical" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.radikallab.earch.DetailsActivity" android:background="@drawable/background10"> <LinearLayout android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:id="@+id/title" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="25dp" android:text="Title" android:textStyle="italic"/> <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:src="@drawable/background4" android:id="@+id/iv"/> <TextView android:id="@+id/rat" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="20sp" android:text="Title" android:textStyle="italic"/> <TextView android:id="@+id/addr" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="17sp" android:text="Title" android:textStyle="italic"/> <WebView android:layout_width="match_parent" android:layout_height="500dp" android:layout_marginTop="10dp" android:id="@+id/webView" android:layout_gravity="center_horizontal" /> </LinearLayout>