Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
      3                                     xmlns:card="http://schemas.android.com/apk/res-auto"
      4                                     android:layout_width="match_parent"
      5                                     card:cardUseCompatPadding="true"
      6                                     android:background="@color/card_classic"
      7                                     android:layout_height="wrap_content">
      8     <TextView android:layout_width="wrap_content"
      9               android:textColor="@android:color/black"
     10               android:layout_height="@dimen/touch_item_min_height"
     11               android:id="@+id/text_view"/>
     12     <Button android:layout_width="wrap_content" android:layout_height="wrap_content"
     13             android:layout_gravity="end|center_vertical"
     14             android:id="@+id/action_button" android:visibility="gone"/>
     15     <FrameLayout
     16             android:id="@+id/overlay"
     17             android:visibility="gone"
     18             android:background="@color/card_tropical"
     19             android:layout_width="match_parent"
     20             android:layout_height="@dimen/touch_item_min_height">
     21         <TextView android:layout_width="wrap_content"
     22                   android:layout_height="wrap_content"
     23                   android:layout_gravity="center"
     24                   android:text="@string/swiping"/>
     25     </FrameLayout>
     26 </android.support.v7.widget.CardView>