Skip to content

Commit d9bfbcb

Browse files
Merge pull request #122 from Omega-R/feature/expandable-recycler-view
fixed ChildViewHolder's horizontal margins on OS < 7, also upgraded build tools
2 parents 918ff93 + 042dcb2 commit d9bfbcb

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.idea/gradle.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
google()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:3.2.1'
10+
classpath 'com.android.tools.build:gradle:3.3.2'
1111
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1212

1313
// NOTE: Do not place your application dependencies here; they belong
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Oct 04 09:42:55 MSK 2018
1+
#Wed Mar 06 12:09:01 MSK 2019
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip

omegarecyclerviewlibs/src/main/java/com/omega_r/libs/omegarecyclerview/expandable_recycler_view/ChildClippingFrameLayout.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ public ChildClippingFrameLayout(View contentView) {
2626
super(contentView.getContext());
2727
setWillNotDraw(false);
2828

29-
addView(contentView);
3029
setupLayoutParams(contentView);
30+
addView(contentView);
3131
}
3232

3333
private void setupLayoutParams(@NonNull View contentView) {

0 commit comments

Comments
 (0)