import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
import android.widget.Toast;
public class ViewId extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView txtArea = new TextView(this);
txtArea.setId(20);
txtArea.setText("Hello");
TextView view = new TextView(this);
view = (TextView) this.findViewById(20);
Toast.makeText(this,view.getText(), Toast.LENGTH_LONG).show();
}
}
上記のコードをEclipseでデバッグすると、ビューの値が変数ウィンドウにnullと表示されます。何が問題ですか?または、テキストビューのIDを設定し、XMLファイルを使用せずにその特定のIDからそのテキストビューを取得する他の方法はありますか?