当我使用“android:layout_margin”时Android应用程序崩溃

时间:2012-12-13 16:19:32

标签: android android-layout

这是我的XML。

http://pastebin.com/vaw7xY7t

如果我删除第18行,它就有效。

    android:layout_margin="0dp"

但是如果我添加

    android:layout_margin="0dp"

程序在启动时崩溃并发出消息“不幸......已停止工作”

2 个答案:

答案 0 :(得分:2)

您没有指定的layout_height。将此参数添加到wrap_content。 也许?

答案 1 :(得分:-1)

崩溃的真正原因是因为我使用字符串资源来存储维度。 如果要在字符串中存储维度“10dp”,请使用“dimen”代替: 不要像@ string / blah那样引用它,而是使用@ dimen / blah。

看看这个答案:

android eclipse using string resource for text size in layouts