我正在将RecyclerView与Cardview项一起使用。我将GridLayoutManager设置为在每行显示2个项目,并希望将其集中在所有这样的手机上:
预期结果
但是我目前有这些:
实际结果
我尝试了其他较差的解决方案(paddingLeft ...),但它可以在屏幕更大的手机上使用,而在较小的手机上则无法使用。
content_main.xml看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="wrap_content"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:card_view="http://schemas.android.com/tools">
<SearchView
android:id="@+id/searchView"
android:layout_width="match_parent"
android:queryHint="Rechercher un film"
android:iconifiedByDefault="false"
android:layout_marginTop="65dp"
android:layout_marginBottom="10dp"
android:layout_height="30dp" />
<android.support.v7.widget.RecyclerView
android:id="@+id/movies_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_below="@+id/searchView"
android:scrollbars="vertical"
card_view:cardCornerRadius="5dp"
card_view:cardElevation="5dp"
card_view:cardUseCompatPadding="true" />
</RelativeLayout>
movie_card.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:id="@+id/cardView"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="170dip"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/item_movie_poster"
android:layout_width="170dip"
android:layout_height="256dip"
android:layout_centerHorizontal="true"
android:contentDescription="@string/movie_image_description"
android:scaleType="centerCrop" />
<TextView
android:id="@+id/item_movie_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/item_movie_poster"
android:layout_centerHorizontal="true"
android:layout_marginBottom="10dip"
android:layout_marginTop="5dip"
android:textSize="15sp"
android:textAlignment="center"
android:singleLine="true"
android:ellipsize="marquee"
android:textStyle="bold" />
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
以及包含content_main.xml的app_bar_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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"
tools:context=".MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:1)
在recyler视图中设置右边距或左边距:-
<android.support.v7.widget.RecyclerView
android:id="@+id/movies_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_below="@+id/searchView"
android:scrollbars="vertical"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
card_view:cardCornerRadius="5dp"
card_view:cardElevation="5dp"
card_view:cardUseCompatPadding="true" />
答案 1 :(得分:1)
在您的movie_card.xml
中将宽度设置为match_parent
并添加重力
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" //<-- change
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" //<-- add
android:orientation="vertical">
答案 2 :(得分:0)
检查以下代码。您需要删除android:layout_alignParentStart="true"
并将
android:layout_centerInParent="true"
添加到RecyclerView
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:card_view="http://schemas.android.com/tools">
<SearchView
android:id="@+id/searchView"
android:layout_width="match_parent"
android:queryHint="Rechercher un film"
android:iconifiedByDefault="false"
android:layout_marginTop="65dp"
android:layout_marginBottom="10dp"
android:layout_height="30dp" />
<android.support.v7.widget.RecyclerView
android:id="@+id/movies_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_below="@+id/searchView"
android:scrollbars="vertical"
card_view:cardCornerRadius="5dp"
card_view:cardElevation="5dp"
card_view:cardUseCompatPadding="true" />
</RelativeLayout>
我希望这对您有用。
答案 3 :(得分:0)
由于您使用的是GridLayoutManager
,因此将card_view.xml
的父视图宽度设置为match_parent
,即
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" //change
android:layout_height="wrap_content"
android:gravity="center"//add this
android:orientation="vertical">
或者您可以将其设为RelativeLayout
并将子项CardView
centerInParent
设置为true
如有任何疑问,请发表评论
希望这会有所帮助。编码愉快!