2017-02-18 6 views
1

카드보기에서 파급 효과를 얻으려고합니다. Android 개발자 페이지 https://developer.android.com/training/material/animations.html에 설명 된대로 android : background 속성을 추가하여 구현했지만 리플 효과를 얻지 못했습니다. 다음, 나는 안드로이드에 속성을 변경 : 전경을 내 XML 코드Android Lollipop CardView에서 리플 효과가 나타나지 않습니다.

<?xml version="1.0" encoding="utf-8"?> 
    <android.support.v7.widget.CardView 
     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="wrap_content" 
     card_view:cardBackgroundColor="@color/cardview_light_background" 
     card_view:cardElevation="3dp" 
     android:focusable="true" 
     android:focusableInTouchMode="true" 
     android:id="@+id/card_view" 
     android:clickable="true" 
     android:background="?android:attr/selectableItemBackground" 
     android:layout_margin="@dimen/password_list_item_card_view_layout_margin"> 


      <LinearLayout 
       android:orientation="horizontal" 
       android:layout_width="match_parent" 
       android:layout_height="70dp"> 

       <TextView 
        android:layout_width="48dp" 
        android:layout_height="48dp" 
        android:id="@+id/logo_text_holder" 
        android:layout_marginTop="12dp" 
        android:layout_marginStart="12dp" 
        android:textColor="@color/colorPrimaryDark" 
        android:background="@drawable/circle" 
        android:paddingTop="8dp" 
        android:textSize="24sp" 
        android:textAlignment="center" /> 

       <LinearLayout 
        android:orientation="vertical" 
        android:layout_width="match_parent" 
        android:layout_height="match_parent" 
        android:layout_marginStart="16dp" 
        android:layout_marginTop="8dp"> 

        <TextView 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:id="@+id/name_holder" 
         android:textColor="@color/colorPrimaryDark" 
         android:textSize="24sp" /> 

        <TextView 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:id="@+id/email_holder" 
         android:textColor="@color/colorPrimaryDark" 
         android:textSize="14sp"/> 
       </LinearLayout> 
      </LinearLayout> 
    </android.support.v7.widget.CardView> 

아직도 내가 여기에 파급 효과를 얻고 있지 않다 https://stackoverflow.com/a/26975714/6866139에 주어진 그것을 구현하기 위해 어떤 방법이 있나요, 나에게 사전

에서 감사를 도와주세요
+0

android : background = "? android : attr/selectableItemBackground"대신이 android : foreground = "? android : attr/selectableItemBackground"를 사용하십시오. –

+0

나는 android : foreground와 android : 배경 속성을 모두 사용해 보았지만 여전히 작동하지 않습니다. – RikudouSennin

답변

0

안에 동일한 문제가 있습니다. CardView의210 대신 android:layout_width="match_parent" 사용 아래의 코드와 같이 android:layout_width="wrap_content"

의 :

<android.support.v7.widget.CardView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      app:cardBackgroundColor="@color/green" 
      android:foreground="?attr/selectableItemBackground" 
      android:background="?attr/selectableItemBackground" 
      android:stateListAnimator="@animator/lift_on_touch" 
      android:focusable="true" 
      android:clickable="true" 
      app:cardPreventCornerOverlap="false" 
      app:cardUseCompatPadding="true"> 
     <TextView 
      android:id="@+id/notification_details_med_close" 
      android:layout_width="wrap_content" 
      android:padding="10dp" 
      android:layout_gravity="center" 
      android:layout_height="wrap_content" 
      android:background="@color/green" 
      android:text="CARDVIEW" 
      android:textAppearance="?android:textAppearanceLarge" 
      android:textColor="@android:color/white" /> 
     </android.support.v7.widget.CardView> 

터치에 리프트 애니메이션, animator-v21 폴더

<?xml version="1.0" encoding="utf-8"?> 
<!-- animate the translationZ property of a view when pressed --> 
<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
    <item 
     android:state_enabled="true" 
     android:state_pressed="true"> 
     <set> 
      <objectAnimator 
       android:duration="@android:integer/config_shortAnimTime" 
       android:propertyName="translationZ" 
       android:valueTo="16dp" 
       android:valueType="floatType"/> 
     </set> 
    </item> 
    <item> 
     <set> 
      <objectAnimator 
       android:duration="@android:integer/config_shortAnimTime" 
       android:propertyName="translationZ" 
       android:valueTo="0" 
       android:valueType="floatType"/> 
     </set> 
    </item> 
</selector> 

이을의 애니메이터 리소스 파일 lift_on_touch을 만들 CardView의 머티리얼 디자인 효과에 도움이됩니다.

참고 : android:stateListAnimator은 API 21 이상에서 작동합니다.