Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix the issue #40 #95

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions source/src/cn/eoe/app/view/UserCollectFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ public class UserCollectFragment extends Fragment {
private WindowManager wm;
private UserCollectListFragment mUserFragment;


//All subclasses of Fragment must include a public empty constructor.
public UserCollectFragment()
{}

public UserCollectFragment(UserResponse userResponse,
FragmentActivity activity) {
mActivity = activity;
Expand Down
4 changes: 4 additions & 0 deletions source/src/cn/eoe/app/view/UserCollectListFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ public class UserCollectListFragment extends Fragment implements

private UserFavoriteList mUserFavoriteList;

//All subclasses of Fragment must include a public empty constructor.
public UserCollectListFragment()
{}

public UserCollectListFragment(Activity activity,
UserFavoriteList userFavoriteList) {
mUserFavoriteList = userFavoriteList;
Expand Down
4 changes: 4 additions & 0 deletions source/src/cn/eoe/app/view/UserIntroFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ public class UserIntroFragment extends Fragment {
private List<Map<String, Object>> mList;
private Context mContext;

//All subclasses of Fragment must include a public empty constructor.
public UserIntroFragment()
{}

public UserIntroFragment(UserResponse result) {
mUserResponse = result;
}
Expand Down
4 changes: 4 additions & 0 deletions source/src/cn/eoe/app/view/UserLogOutFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ public class UserLogOutFragment extends Fragment implements OnClickListener {
private Activity mActivity;
private boolean isShowtxt;

//All subclasses of Fragment must include a public empty constructor.
public UserLogOutFragment()
{}

public UserLogOutFragment(Activity activity,boolean isshow) {
mActivity = activity;
isShowtxt=isshow;
Expand Down
4 changes: 4 additions & 0 deletions source/src/cn/eoe/app/view/WikiFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ public void handleMessage(android.os.Message msg) {

};

//All subclasses of Fragment must include a public empty constructor.
public WikiFragment()
{}

public WikiFragment(Activity c, WikiCategoryListEntity categorys) {
this.mActivity = c;
if (categorys != null) {
Expand Down