Как создать прокручиваемый шаблон с использованием фрагментов в Android - PullRequest
0 голосов
/ 22 мая 2019

Я пытаюсь добиться чего-то вроде следующего

Wireframe vertical layout. Search bar fragment, Banner Slider, Items Fragment

Я пытаюсь создать действие, объединяющее 3 фрагмента. Верхний фрагмент содержит строку поиска (EditText), средний фрагмент имеет ползунок Banner (ViewPager), а нижний фрагмент содержит GridView, загруженный n количеством элементов динамически. Я хочу, чтобы средний и нижний фрагменты прокручивались вертикально, а верхний фиксировался. Но представление Grid прокручивается внутри себя, в то время как высота установлена ​​на wrap_content.

Если GridView задана фиксированная высота, он работает как положено. Но я не могу дать ему фиксированную высоту, поскольку его содержимое загружается динамически.

Домашняя активность:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:background="@color/colorLightGray"
    tools:context=".HomeActivity">

    <ScrollView
        android:id="@+id/scrollableContents"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:padding="5dp">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <FrameLayout
                android:id="@+id/fragmentContainerSearchBar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </FrameLayout>

            <FrameLayout
                android:id="@+id/fragmentContainerSlider"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </FrameLayout>

            <FrameLayout
                android:id="@+id/fragmentContainerPopularItems"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </FrameLayout>

        </LinearLayout>
    </ScrollView>      

</RelativeLayout>

SearchBarFragment:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:context=".fragments.HomeSearchBarFragment">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingHorizontal="2dp"
        android:paddingVertical="2dp"
        android:focusable="true"
        android:focusableInTouchMode="true">
        <EditText
            android:id="@+id/etSearchBoxHome"
            android:inputType="text"
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:drawableRight="@drawable/ic_search_24dp"
            android:drawablePadding="5dp"
            android:background="@drawable/et_search_home"
            android:paddingLeft="15dp"
            android:paddingRight="15dp"
            android:layout_marginTop="0dp"
            android:clickable="true"
            android:cursorVisible="true"
            android:focusable="true"
            android:textSize="14dp"
            android:hint="@string/home_searchbox_hint"/>
    </RelativeLayout>

</FrameLayout>

Фрагмент слайдера баннера:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:layout_margin="2dp"
    tools:context=".fragments.HomePromoSliderFragment">

    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="2dp"
        card_view:cardBackgroundColor="@color/colorWhite"
        card_view:cardCornerRadius="3dp">

        <android.support.v4.view.ViewPager
            android:id="@+id/view_pager"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        </android.support.v4.view.ViewPager>

    </android.support.v7.widget.CardView>

</RelativeLayout>

Фрагмент популярных предметов:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:context=".fragments.HomePopularItemsFragment">

        <GridView
            android:id="@+id/gvPopularItems"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:columnWidth="150dp"
            android:gravity="center"
            android:numColumns="auto_fit"
            android:stretchMode="columnWidth">
        </GridView>
</RelativeLayout>

Ответы [ 2 ]

0 голосов
/ 23 мая 2019
Try using `Constraint Layout` for whole layout, `autocomplete text view` for search bar, `viewpager` for banners, recycler view for showing the loaded items.

<android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

        <AutoCompleteTextView
                android:id="@+id/search"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:layout_constraintTop_toTopOf="parent"/>

         <android.support.v4.view.ViewPager
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent">

           <android.support.v7.widget.RecyclerView
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    app:layout_constraintBottom_toBottomOf="parent">
            </android.support.v7.widget.RecyclerView>

        </android.support.constraint.ConstraintLayout>

** Установите поля в соответствии с пользовательским интерфейсом

Set your layout manager as Gridlayout manager for recycler view as below:

recyclerview.layoutManager = GridLayoutManager(this, 2, OrientationHelper.VERTICAL, false)

Надеюсь, все будет хорошо. Дайте мне знать, если обнаружите какие-либо проблемы.

0 голосов
/ 22 мая 2019

Вы можете использовать nestedScrollView вне ViewPager и Gridview.

Установите для рециркулятора View значение setNestedScrollingEnable (false) .

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <android.support.v4.view.ViewPager
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    </android.support.v4.view.ViewPager>

    <GridView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    </GridView>

</android.support.v4.widget.NestedScrollView>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...