Unable To Access View Outside Oncreateview()
I have trying to update views of fragment from activity.And i am getting nullpointerException. public class MyFragment extends Fragment { TextView tv_date, tv_memo_title; public
Solution 1:
You call setSummary
before the Fragment
's view have been created. Are you calling it in the Activity
's onCreate
method?
Post a Comment for "Unable To Access View Outside Oncreateview()"