We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfdc61f commit 01e051cCopy full SHA for 01e051c
dynamic-support/src/main/java/com/pranavpandey/android/dynamic/support/theme/DynamicLayoutInflater.java
@@ -382,6 +382,10 @@ public void run() {
382
protected @Nullable View onCustomiseView(@Nullable View view,
383
@NonNull Context context, @NonNull AttributeSet attrs) {
384
if (view != null) {
385
+ if (view instanceof DynamicCardView && ((DynamicCardView) view).isStrokeRequired()) {
386
+ view = new DynamicMaterialCardView(context, attrs);
387
+ }
388
+
389
if (ADS_TAG_IGNORE.equals(view.getTag())) {
390
view = null;
391
}
0 commit comments