关于这个问题,我已经搜索了几个小时,但没有找到任何有用的解决方案。这是问题
[0, 0] 处的文本视图在使用多行时被剪裁。这是xml代码。
<TextView
android:id="@+id/testtextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:lines="2"
android:text="Line 1\nLine2"
android:textAppearance="?android:attr/textAppearanceSmall" />
我尝试添加填充和边距,但似乎没有任何效果,可能是什么问题?谢谢 :)
PS:在 Android 1.6 中不会发生,我也尝试以编程方式设置文本,即使使用HTML.fromHtml
using <br/>
,似乎对 View 的测量也不好。
编辑:哇现在添加BottomMargin 工作,上次没有工作,真的有时Eclipse 不构建和上传最后构建的版本。很烦人,特别是在测试这样的东西时。