Х ребят,LinearLayout кадрирование, но не расширяется в Scrollview
Я искал здесь и там, но не могу найти решение. Я использую LinearLayout внутри ScrollView внутри LinearLayout, LinearLayout -> ScrollView -> LinearLayout. Однако он не расширяется, когда я хочу, вместо этого он обрабатывает мой макет.
Кто-нибудь знает, что мне здесь не хватает? Может быть немного грязный, но пытался много 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>
Изменено так, как вы, ребята, предложили. Он расширяется (текст исчезает внизу), но я не могу прокручивать его. Теперь я пойду домой, я проверю это позже. В любом случае, спасибо! –
Проблема - это значения веса. Я удалил их, дал некоторые высоты и обернул содержимое, и теперь он снова прокручивается ... Однако это не делает его отзывчивым. –