Error in xml layout, Can't convert to dimension: 15

前端 未结 2 1548
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-06 20:55

Within my application I have an error in the graphical layout which shows up as:

error!
UnsupportedOperationException: Can\'t convert to dimension: 15
Except         


        
相关标签:
2条回答
  • 2020-12-06 21:28

    There is no such thing as a negative margin. Use android:gravity="top" if your textview is higher than your textsize and you want the text to appear on the top. Otherwise use android:layout_height="wrap_content". Your view will exactly fit this way.

    If you want 3dp space between the top border of the textview and the actual text, use android:paddingTop="3dp". Generally, margin is the free space outside the view, padding is the inside spacing between the border and the content.

    0 讨论(0)
  • 2020-12-06 21:38

    I doubt you still need help with this problem; however, I ran into a similar message and thought I would share to hopefully help anyone else that might run into this error message.

    I found that the error was only occurring in the "2.7in QVGA slider" device configuration. I also found that if I changed the negative value to a different number I no longer got the error message.

    So, I ended up using -2 instead.

    I am going to guess the error is caused by some of the scaling calculations in the graphical renderer. But it's not worth researching to find out at this point.

    0 讨论(0)
提交回复
热议问题