#java #android #scrollview
#java #Android #scrollview
Вопрос:
Я новичок в мобильном программировании, пока я работал над своим первоначальным портфолио, у меня возникло несколько проблем, в том числе «Как настроить высоту прокрутки на основе содержимого?» здесь я установил высоту в wrap_content, но отображаемый результат усечен, как и на первом изображении. Результаты должны отображаться, если вы следите за содержимым, как на втором изображении.
вот и все, спасибо, что хотите ответить, извините, если мой английский настолько плох…
<ScrollView
android:id="@ id/scroll1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/searchMain"
android:fillViewport="true">
<LinearLayout
android:id="@ id/linearPopular"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/cv_slider_mainActivity"
android:orientation="vertical"
app:iconifiedByDefault="false"
app:queryBackground="@null"
app:queryHint="@string/search_manga"
app:showDividers="end">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginBottom="16dp"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:text="Terbaru"
android:textColor="@android:color/black"
android:textSize="20sp"
android:textStyle="bold" />
<androidx.recyclerview.widget.RecyclerView
android:id="@ id/rv_terbaru"
android:layout_width="match_parent"
android:layout_height="380dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
tools:listitem="@layout/item_row" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginBottom="24dp"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:text="Popular"
android:textColor="@android:color/black"
android:textSize="18sp"
android:textStyle="bold" />
<androidx.recyclerview.widget.RecyclerView
android:id="@ id/rv_popular"
android:layout_width="wrap_content"
android:layout_height="180dp"
android:layout_marginLeft="16dp"
android:orientation="horizontal"
android:scrollbars="horizontal"
tools:listitem="@layout/item_row_card" />
</LinearLayout>
</LinearLayout>
</ScrollView>
Комментарии:
1. Используйте
NestedScrollView
вместоScrollView
и для удаления разметки используйтеConstraintLayout
2. устанавливаете ли вы фиксированную высоту элемента recyclerview или переносите содержимое