В этом случае android:layout_weight
не используется.А также вам не нужно использовать android:layout_weight
внутри ScrollView
.Если вы используете Views
, то обернетесь внутри ViewGroup
и не будет прокручиваться.И fill_parent
является ограниченным. Используйте match_parent
.
. Используйте макет ниже:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/colorPrimary"
android:clickable="true"
android:gravity="center_vertical">
</RelativeLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorAccent"
android:orientation="vertical"
android:padding="2dp"
>
<!--Other views goes here without weight-->
</LinearLayout>
</ScrollView>
</LinearLayout>