Skip to content
This repository has been archived by the owner on Jan 6, 2020. It is now read-only.

Commit

Permalink
Merge branch 'release/1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Lipinski committed Apr 2, 2015
2 parents 39798df + ecad6e4 commit 4964918
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 1.0.1 *(2015-04-02)*
----------------------------

* Fix: Header clickability fixed

Version 1.0.0 *(2015-04-02)*
----------------------------

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,18 @@ Basically, there are two ways of using `RecyclerViewHeader`.

**Header-already-aligned approach** (does not introduce any additional `Layouts`):

1. Place `RecyclerViewHeader`layout under your `RecyclerView` at the top part of it.
1. Place `RecyclerViewHeader`layout above your `RecyclerView` at the top part of it.

<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|top" />

<com.bartoszlipinski.recyclerviewheader.RecyclerViewHeader
android:id="@+id/header"
android:layout_width="match_parent"
Expand All @@ -60,12 +66,6 @@ Basically, there are two ways of using `RecyclerViewHeader`.

</com.bartoszlipinski.recyclerviewheader.RecyclerViewHeader>

<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|top" />

</FrameLayout>

2. Get the `RecyclerViewHeader` view object with:
Expand Down Expand Up @@ -95,7 +95,7 @@ You can grab the library via Maven Central. Just add a proper dependency inside

```xml
dependencies {
compile 'com.bartoszlipinski.recyclerviewheader:library:1.0.0'
compile 'com.bartoszlipinski.recyclerviewheader:library:1.0.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_NAME=1.0.0
VERSION_CODE=1
VERSION_NAME=1.0.1
VERSION_CODE=2
GROUP=com.bartoszlipinski.recyclerviewheader

POM_DESCRIPTION=Super fast and easy way to create header for Android RecyclerView
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 21
versionCode 1
versionName "1.0.0"
versionCode 2
versionName "1.0.1"
}
buildTypes {
release {
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.bartoszlipinski.recyclerviewheader.sample"
minSdkVersion 16
targetSdkVersion 21
versionCode 1
versionName "1.0.0"
versionCode 2
versionName "1.0.1"
}
buildTypes {
release {
Expand Down

0 comments on commit 4964918

Please sign in to comment.