ファイルにコピーして貼り付けた後、目覚まし時計のソースコードを作成しようとしています。コンパイル中にエラーが発生し、mContextを解決できません。このコードへのリンクは次のとおりです。http://www.netmite.com/android/mydroid/2.0/packages/apps/AlarmClock/src/com/android/alarmclock/DigitalClock.java
そして、以下のmContextを使用するコードの一部をコピーして貼り付けました
protected void onAttachedToWindow() {
super.onAttachedToWindow();
if (Log.LOGV) Log.v("onAttachedToWindow " + this);
if (mAttached) return;
mAttached = true;
if (mAnimate) {
setBackgroundResource(R.drawable.animate_circle);
/* Start the animation (looped playback by default). */
((AnimationDrawable) getBackground()).start();
}
if (mLive) {
/* monitor time ticks, time changed, timezone */
IntentFilter filter = new IntentFilter();
filter.addAction(Intent.ACTION_TIME_TICK);
filter.addAction(Intent.ACTION_TIME_CHANGED);
filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
mContext.registerReceiver(mIntentReceiver, filter, null, mHandler);
}
/* monitor 12/24-hour display preference */
mFormatChangeObserver = new FormatChangeObserver();
mContext.getContentResolver().registerContentObserver(
Settings.System.CONTENT_URI, true, mFormatChangeObserver);
updateTime();
}
private void setDateFormat() {
mFormat = Alarms.get24HourMode(mContext) ? Alarms.M24 : M12;
mAmPm.setShowAmPm(mFormat == M12);
}
このコンパイルエラーを解決するために、このステートメントをコードに追加しました
Context mContext;
ただし、コンパイルエラーは解決されますが、エミュレータで起動すると、アプリケーションは例外をスローし、起動せずに終了します。
誰かが私が代わりに書いたこの文脈のものまたはワットシャッドの使い方を教えてもらえますか?