Dominik

Results 10 comments of Dominik

I didn't further look into a solution as I am still busy with other things right now. But it seems like there's not going to be an update any time...

almost half a year ago and no response.

What are the changes in this fork?

I just tried it out but I still get this error: > ERROR: Unable to resolve dependency for ':app@googlePlayFlavorDebug/compileClasspath': Could not resolve com.android.support:support-v4:22.+.

I just did another test. I commented this out: `implementation 'com.github.Chenyang0324:MaterialDesignLibrary:1.10'` and I could build the app without error messages (well except the errors I get for not having the...

I just looked at your fork and saw you still have a support-v4 dependency in there. > https://github.com/Chenyang0324/MaterialDesignLibrary/blob/master/MaterialDesignLibrary/MaterialDesign/build.gradle > dependencies { > compile 'com.nineoldandroids:library:2.4.+' > **compile 'com.android.support:support-v4:22.+'** > compile fileTree(dir:...

This is how I solved this problem: ``` bodyFeaturesLayout.getHeaderLayout().setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (bodyFeaturesLayout.isOpened()) { bodyFeaturesLayout.hide(); bodyFeaturesRightIcon.setImageResource(R.drawable.ic_expand_more_black_36dp); } else { bodyFeaturesLayout.show(); bodyFeaturesRightIcon.setImageResource(R.drawable.ic_expand_less_black_36dp); } } });...