2014-08-27 124 views
-1
<Button 
    android:id="@+id/button2" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignLeft="@+id/button1" 
    android:layout_alignRight="@+id/button1" 
    android:layout_below="@+id/button1" 
    android:layout_marginTop="23dp" 
    android:text="Press me" 
    android:onCLick_2="onClick_2" 

    /> 

我在Android應用程序中創建了一個按鈕。打印輸出爲 「在android中的屬性onClick_2上找不到資源標識符」。資源標識符錯誤

有人可以幫我嗎?

也可以有人告訴最後兩行代碼推斷(/>獨佔)?

+0

你應該使用android:onClick – Aashir 2014-08-27 16:03:27

回答

1

屬性名稱應該是而不是android:onCLick_2

/之前>自行終止一個XML標記,因此您不需要分別地</Button>

+0

我已經做了更正,但錯誤仍然存​​在... – 2014-08-27 16:07:59

相關問題