簡體   English   中英

帶有 snaphelper 的水平回收器視圖,如何將第一個和最后一個元素居中?

[英]Horizontal recyclerview with snaphelper, how to center first and last element?

我已經制作了一些我在真實應用程序中嘗試做的事情的樣本,但我不知道如何解決我的問題。 當前的解決方案如下所示。

在此處輸入圖像描述

所以我有一個電影類別的垂直列表,在每個類型中,我都有一個水平的電影列表。 第一行,將 The Exorcist 顯示為第一個元素,但它沒有居中。 Action 中的第二行顯示了當我向右滾動一點時它的外觀。 最后一行顯示了行尾的樣子。 我希望第一行和最后一行在“選中”時也可以居中。

我的主要活動如下所示:

<androidx.constraintlayout.widget.ConstraintLayout 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"
android:background="@android:color/white">

<androidx.recyclerview.widget.RecyclerView
    android:id="@+id/moviesListRecyclerView"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:visibility="visible"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    tools:listitem="@layout/movie_category_item_view" />

</androidx.constraintlayout.widget.ConstraintLayout>

movie_category_item_view 如下所示:

<androidx.constraintlayout.widget.ConstraintLayout 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:id="@+id/movieListLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white">

<androidx.appcompat.widget.AppCompatTextView
    android:id="@+id/movieCategoryTitle"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginStart="20dp"
    android:layout_marginTop="40dp"
    android:textColor="@android:color/black"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    tools:text="Horror" />

<androidx.recyclerview.widget.RecyclerView
    android:id="@+id/moviesRecyclerView"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginTop="32dp"
    android:orientation="horizontal"
    android:visibility="visible"
    app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@id/movieCategoryTitle"
    tools:listitem="@layout/movie_horizontal_item_view" />

</androidx.constraintlayout.widget.ConstraintLayout>

像這樣的movie_horizontal_item_view:

<androidx.constraintlayout.widget.ConstraintLayout 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="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:orientation="vertical">

<androidx.appcompat.widget.AppCompatTextView
    android:id="@+id/movieTitle"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:textColor="@android:color/black"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    tools:text="Horror" />

<androidx.appcompat.widget.AppCompatImageView
    android:id="@+id/image"
    android:layout_width="237dp"
    android:layout_height="209dp"
    android:background="@android:color/black"
    android:src="@drawable/ic_launcher_foreground"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@id/movieTitle"
    tools:src="@drawable/ic_launcher_foreground" />

</androidx.constraintlayout.widget.ConstraintLayout>

希望我的要求是有道理的,如果您想自己嘗試一下,看看我的意思,可以在 github 上找到

使用carouselview.CarouselView

 <alirezat775.lib.carouselview.CarouselView
                android:id="@+id/carousel_view"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="8dp"/>

適配器

class MyAdapter(var ctx: Context) : CarouselAdapter() {

    private var vh: CarouselViewHolder? = null

    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): CarouselViewHolder {
        val inflater = LayoutInflater.from(parent.context)
        val v = inflater.inflate(R.layout.home_list_item, parent, false)
        vh = MyViewHolder(v)
        return vh as MyViewHolder
    }

    override fun onBindViewHolder(holder: CarouselViewHolder, position: Int) {

    }

    inner class MyViewHolder(itemView: View) : CarouselViewHolder(itemView) {

    }

}

活動

class MainActivity : AppCompatActivity() {

    var carousel: Carousel? = null
    val adapter = MyAdapter(this)

    override fun onCreate(savedInstanceState: Bundle?) {


        carousel = Carousel(this, carousel_view, adapter)
        carousel!!.setOrientation(CarouselView.HORIZONTAL, false)
        //  carousel!!.autoScroll(true, 5000, true)
        //    carousel!!.scaleView(true)

    }

}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM