Created
November 10, 2016 17:43
-
-
Save prasannaboppe/d34362da12f33c3d61fd2e2eeb7e157a to your computer and use it in GitHub Desktop.
RecyclerView with Header and Footer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:layout_marginLeft="5dp" | |
android:layout_marginRight="5dp"> | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:orientation="vertical" | |
android:padding="@dimen/activity_horizontal_margin"> | |
<TextView | |
android:id="@+id/text_view_title" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:textSize="18sp" | |
android:textStyle="bold" | |
tools:text="Jalebi - A Desi Word Game" /> | |
<TextView | |
android:id="@+id/text_view_sub_title" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
tools:text="1M Downloads" /> | |
</LinearLayout> | |
</android.support.v7.widget.CardView> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:orientation="vertical" | |
android:padding="@dimen/activity_horizontal_margin"> | |
<TextView | |
android:id="@+id/text_view_title" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:textSize="18sp" | |
android:textStyle="bold" | |
tools:text="Games" /> | |
<TextView | |
android:id="@+id/text_view_sub_title" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
tools:text="Recommended for you" /> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment