W Androidzie, w jaki sposób można utworzyć widok przewijania, który ma maksymalną wysokość i zawijać zawartość, w zasadzie zawija zawartość w pionie, ale ma maksymalną wysokość?Jak ustawić maksymalną wysokość z zawartością zawijania w systemie Android?
Próbowałem
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxHeight="200dp"
android:layout_alignParentBottom="true" >
<LinearLayout
android:id="@+id/maincontainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
</ScrollView>
Ale to nie działa?
tutaj jest inne rozwiązanie problemu: https://stackoverflow.com/questions/42694355/how-to-set-recyclerview-max-height/48970129#48970129 – user1506104