开始学习:按钮

时间:2013-10-19 17:56:41

标签: android button

我正在使用这段代码而且我还处于初期阶段,但我正在从新浪的视频中学习,看来编码中的一些东西自发表他的教程以来已经发生了变化

我正在输入此代码

 <button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Love"
    android:textSize="50sp" />

但它没有在按钮内部制作Love字,单词保持按钮不变 告诉我有什么问题

2 个答案:

答案 0 :(得分:2)

不是button,而是Button。 XML标记指向框架中的java类。 Java区分大小写。

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Love"
    android:textSize="50sp" />

答案 1 :(得分:1)

将“按钮”更改为“按钮”,区分大小写

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Love"
    android:textSize="50sp" />