我現在遇見一個問題是 NotFound resource exception。我確信 resource-id和我設置的是一樣的,但總是不對。第一行"findViewById( R.id.editText1 )" 可以很好的運行,可以在editText1中看到 "start!" 標簽。
但是第二行在線程中,有錯誤信息:09-29 00:17:45.103: E/AndroidRuntime(347): android.content.res.Resources$NotFoundException: String resource ID #0x0
如何解決這個問題呢?
EditText editText = ( EditText ) findViewById( R.id.editText1 );
editText.setText( "start!" );
final Handler handler = new Handler();
Runnable runnable = new Runnable() {
@Override
public void run() {
for (int i = 0; i <= 10; i++) {
final int value = i;
try {
Thread.sleep( 1000 );
} catch ( InterruptedException e ) {
e.printStackTrace();
}
handler.post( new Runnable() {
@Override
public void run() {
EditText editText = ( EditText ) findViewById( R.id.editText1 );
editText.setText( value );
}
} );
}
}
};
Thread thread = new Thread( runnable );
thread.start();
value 是一個整數值。傳遞一個整數值到 setText 方法,你可以通過 resource ID 從 strings.xml 文件中找到一個 String。如果你想顯示一個數字,你需要把它解析成:String: Integer.toString(value)