2017-05-17 86 views
0

我有简单的Cardview奇怪的行为。 当我运行我的应用程序时,一切都很好 - 正如我在第一张照片上显示的那样。 当我向下滚动,并再次scrollup每个Cardview元素更改高度,看起来像图片2.任何想法是什么原因导致此问题? pic1Android Cardview奇怪的行为

pic2

而且我的xml: 内容滚动:

<?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" 
    tools:context="flex.com.sklepik.MainActivity" 
    tools:showIn="@layout/main_activity"> 

    <android.support.v7.widget.RecyclerView 
     android:id="@+id/recycler_view" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:clipToPadding="false" 
     android:scrollbars="vertical" /> 


</RelativeLayout> 

MainActivity:

<?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" 
    android:fitsSystemWindows="true" 
    tools:context="flex.com.sklepik.MainActivity"> 

    <android.support.design.widget.AppBarLayout 
     android:id="@+id/app_bar" 
     android:layout_width="match_parent" 
     android:layout_height="@dimen/app_bar_height" 
     android:fitsSystemWindows="true" 
     android:theme="@style/AppTheme.AppBarOverlay"> 

     <android.support.design.widget.CollapsingToolbarLayout 
      android:id="@+id/toolbar_layout" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:fitsSystemWindows="true" 
      app:contentScrim="?attr/colorPrimary" 
      app:layout_scrollFlags="scroll|exitUntilCollapsed"> 

      <android.support.v7.widget.Toolbar 
       android:id="@+id/toolbar" 
       android:layout_width="match_parent" 
       android:layout_height="?attr/actionBarSize" 
       app:layout_collapseMode="pin" 
       app:popupTheme="@style/AppTheme.PopupOverlay"/> 

     </android.support.design.widget.CollapsingToolbarLayout> 
    </android.support.design.widget.AppBarLayout> 

    <include layout="@layout/content_scrolling"/> 


</android.support.design.widget.CoordinatorLayout> 

单卡:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
       xmlns:card_view="http://schemas.android.com/apk/res-auto" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       > 

    <android.support.v7.widget.CardView 

     android:id="@+id/card_view" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_gravity="center" 
     android:layout_margin="@dimen/card_margin" 
     android:elevation="5dp" 
     card_view:cardCornerRadius="@dimen/card_shop_radius"> 

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


      <ImageView 
       android:id="@+id/thumbnail" 
       android:layout_width="match_parent" 
       android:layout_height="160dp" 
       android:background="?attr/selectableItemBackgroundBorderless" 
       android:clickable="true" 
       android:scaleType="fitXY"/> 


     </RelativeLayout> 


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

</LinearLayout> 
+0

recyclerview项目根视图的高度,在这种情况下'LinearLayout'不应该是match_parent。设定一个固定值。 – Saurabh

+0

是的,它解决了我的问题。你能回答@沙拉布吗?我会标记它。无论如何,非常感谢 –

+0

或者,您可以为LinearLayout,CardView和RelativeLayout设置android:layout_height =“wrap_content”,而不是硬编码固定值。 –

回答

0

recyclerview项目根视图的高度,在这种情况下LinearLayout不应该是match_parent。设定一个固定值。