skip to Main Content

Whenever i used neumorphism library, design preview went completly blank, although i can drag and drop everything, just i am not able to see this…

enter image description here

enter image description here

I tried almost everything…

2

Answers


  1. Chosen as BEST ANSWER

    I just found solution on github. There is some bug in Dolphine version of Android. To use neumorphism library, There are two options... Either write all the colors manually in colors.xml which required in this library. Or update your android studio to giraff or downgrade your android studio to Chipmunk.


  2. Just out of curiosity, try to using a different layout like LinearLayout and see if that helps.

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:orientation="vertical" >
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search