如题,getBaseContext()和getContext()的区别是什么?
业精于勤,荒于嬉;行成于思,毁于随。
getContext() は、現在実行中の view の context を返します。通常は、現在アクティブな activity の context です。 getBaseContext()は、他のcontextからContextにアクセスする必要がある場合に使用されます。
getContext()
view
context
activity
getBaseContext()
Context
getContext()
は、現在実行中のview
のcontext
を返します。通常は、現在アクティブなactivity
のcontext
です。getBaseContext()
は、他のcontext
からContext
にアクセスする必要がある場合に使用されます。