android – 错误:错误:不允许整数类型(在’layout_height’,值为’10’)

前端之家收集整理的这篇文章主要介绍了android – 错误:错误:不允许整数类型(在’layout_height’,值为’10’)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<TextView
    android:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_height="10"
    android:layout_alignBottom="@+id/editText2"
    android:layout_alignRight="@+id/editText2"
    android:layout_alignEnd="@+id/editText2"
    android:layout_marginBottom="63dp"
    android:text="@string/hello" />

每当我输入没有字符串的文本时,它会给我一个黄色的符号.所以我做了一个字符串.现在我在layout_height上得到了上面的消息.我是android开发的新手.

解决方法

使用dp或sp指定整数值
android:layout_height="10dp"

要么

android:layout_height="35sp"
原文链接:https://www.f2er.com/android/314125.html

猜你在找的Android相关文章