Android 台灣中文網

標題: android apps MAC 開發問題 [打印本頁]

作者: chichunfung    時間: 2012-10-22 19:48
標題: android apps MAC 開發問題
我用MAC每次加入button都出完錯誤,請高人幫助,3Q
不會上圖,所以只好用dropbox (https://www.dropbox.com/sh/l7glqyfrc9d574q/T8vAOZmRMf)圖片
作者: ploglin    時間: 2012-12-5 17:37
他只是要建議你,文字的部份請使用 string 定義好的 resource id
作者: yui1200    時間: 2012-12-5 19:47
路过 不懂 呵呵
作者: ploglin    時間: 2012-12-6 09:38
yui1200 發表於 2012-12-5 19:47
路过 不懂 呵呵

意思是說,不要在 xml 中直接輸入字串

以下舉例

  1. // 錯誤
  2. <TextView android:text="show me"></TextView>

  3. // 正確
  4. // 在 string.xml 中加入
  5. <string name="string_show_me">show me</string>
  6. // resource xml
  7. <TextView android:text="@string/string_show_me"></TextView>

複製代碼





歡迎光臨 Android 台灣中文網 (https://apk.tw/) Powered by Discuz! X3.1