2013-10-19 126 views
-2

我使用此代碼,還是我在一個非常早期的階段,但我從thenewboston視頻學習,似乎在編碼幾件事情已經改變,因爲他出版了他的教程開始學習:按鈕

我正在輸入驗證碼

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

但不使內按鈕愛字,字按鈕保持不改變 告訴我什麼是錯

+1

如果您正在學習,您應該瞭解XML不是代碼。這是數據。 – Simon

回答

2

這不是button,它是Button。 XML標籤指向框架中的java類。 Java是區分大小寫的。

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

更改「按鈕」到「按鈕」,它區分大小寫

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