程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-在onCreate()中調用函數

android-在onCreate()中調用函數

編輯:編程綜合問答
在onCreate()中調用函數

想從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");
}

最佳回答:


String realDate = getString(date);

這句有錯,getString裡面的參數是Id 在R文件中存在的ID

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved