Hee guys,
I've been searching here and there but can't seem to find the solution. I'm using a LinearLayout inside a ScrollView inside a LinearLayout, LinearLayout -> ScrollView -> LinearLayout. However it doesn't expand when I want to, instead it crops my layout.
Anyone know what I'm missing here? Might be a bit messy, but been trying alot of stuf
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include
android:id="@+id/image_slider_menu"
layout="@layout/image_slider"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="3" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/menu"
android:orientation="horizontal"
android:gravity="center_vertical">
<ImageView
android:id="@+id/bars_map"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="4"
android:padding="10dp"
android:src="@drawable/maps" />
<TextView
android:id="@+id/report"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="8"
android:gravity="left|center_vertical"
android:text="Meld Misbruik"
android:clickable="true" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="3"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:id="@+id/bar_view_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="title"
android:textSize="22sp"
android:textStyle="bold" />
<TextView
android:id="@+id/bar_view_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="description"
android:textSize="14sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/menu"
android:orientation="vertical"
android:paddingLeft="15dp"
android:paddingTop="5dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Contact"
android:textSize="22sp"
android:textStyle="bold" />
<TextView
android:id="@+id/bar_view_contact"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Gegevens" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
The problem is the weight values. I removed them al, gave some heights and wrap contents and now it is scrolling again.... However this doesn't make it responsive.
This does answer my question, but doesn't require what I want. However the layout looks good enough, even on different resolutions so thats why I leave it like this.