КОД:
</androidx.recyclerview.widget.RecyclerView>
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/home_follow_recent_wrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Space
android:layout_width="match_parent"
android:layout_height="24dp"></Space>
<androidx.appcompat.widget.AppCompatTextView
android:layout_marginStart="12dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16sp"
android:fontFamily="sans-serif-medium"
android:textStyle="normal"
android:textColor="#202020"
android:lineSpacingExtra="5sp"
android:text="RECENT"
/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/second_recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</androidx.recyclerview.widget.RecyclerView>
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.appcompat.widget.LinearLayoutCompat>
ВОПРОС:
Когда активирован first_recyclerview
, я не вижу там слова «ПОСЛЕДНИЕ» .
first_recyclerview
получить весь экран.
Почему first_recyclerview
получить весь экран?
Как я могу показать ПОСЛЕДНЕЕ слово и сделать его хорошо с помощью second_recyclerview
?