当我尝试从onCreate调用某个函数时,该应用程序停止工作。 我想要做的就是,它会在活动加载时更改textview中的文本。帮助
public class BellSchedules extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_bell_schedules);
BellSch(null);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.bell_schedules, menu);
return true;
}
public void BellSch(View view)
{
TextView bells = (TextView) findViewById(R.id.textView1);
int date = (Calendar.DAY_OF_WEEK);
String realDate = getString(date);
//bells.setText(realDate);
bells.setText("huehuehuehuehue");
}
答案 0 :(得分:1)
getString
方法的参数是resId
,需要指向您的一个资源ID。参考此处:http://developer.android.com/reference/android/content/Context.html#getString(int)
请改为尝试:
String realDate = ""+date;
答案 1 :(得分:0)
你需要把
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
// do your work
return true;
}