Archives for: "January 2015, 17"
findViewById in Fragment
In Fragment sub class in Android, you cannot directly use .findViewById() to retrieve the control from view , similar with Activity. You need to do a single small step, using this.getView().
E.g. more »