Не работает onCreate. Текст в TextView не меняется

Import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class investmentlay extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test);
TextView textEl = (TextView) findViewById(R.id.textView1);
textEl.setText("23232323");
}
}

OnCreate не может не работать, ищи ошибку в чём то другом.

Добавить комментарий