Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
public class Utils extends LoginActivity{
    public static String postData(String url, Map<String , String> params, Context context) {
        String responseString=null;

the above one is child class and below one is parent class and i am getting error at

public class LoginActivity extends BaseActivity implements OnClickListener,
        OnKeyListener {
 private final Activity activity;
    private final Context context;
    private final String lisnId;

     public LoginActivity(Activity activity, Context context, String lisnId){
        this.activity=activity;
        this.context = context; 
        this.lisnId = lisnId;
    }
share|improve this question
1  
try to add a default constructor in LoginActivity(). – Raj Jan 16 at 10:53
Would you mind to accept one of the answers? – GaborSch Jan 18 at 1:22

3 Answers

If you don't define any constructor, a default (parameterless) constructor exists, which calls the parent class default constructor. (Case 1)

If you define at least one constructor, then you must manually define the default (parameterless) constructor. Probably this is the situation in your super class. (Case 2)

If you define at least one constructor, and also define the default (parameterless) constructor, then you can call the default constructor. (Case 3)

If you have a child class, which extends a Case 2 superclass, you will not have a default constructor, you must manually define a constructor for the child class. In this situation the child class will be Case 1 class, and it wants to call the default constructor, which does not exist.

share|improve this answer

When you create a class, every constructor must always invoke a constructor of the parent class, either directly or indirectly, implicitly or explicitly. This is called constructor chaining and it effectively ensures that the constructors inherited from the root class (Object) are the first to be invoked before the most specialized ones get to run.

By default (if you don't specify anything, that is), the parameterless constructor is used implicitly. This is equivalent to what would have happened if you had explicitly written super() as the first statement of your class constructor.

If there is no parameterless constructor in the parent class (that's your case, probably) or if you want to invoke another one instead, you have to explicitly use super(...) (for parent class) or this(...) (for current class) as the first statement in your constructor.

So, in your case, BaseActivity probably doesn't have a BaseActivity() (parameterless) constructor. So, you have to explicitly state in every constructor of your LoginActivity which (existing) constructor of BaseActivity() you want to invoke - and you do so using super(...) with the proper arguments.

share|improve this answer

By adding constructor in utils.java problem is resolved.

public Utils(Activity activity, Context context, String lisnId) {
        super(activity, context, lisnId);
        // TODO Auto-generated constructor stub
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.