Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7958241
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T04:23:26+00:00 2026-06-04T04:23:26+00:00

I have my own base abstract class which extends Activity class. public abstract class

  • 0

I have my own base abstract class which extends Activity class.

public abstract class BaseActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(getLayoutResourceId());
    }

    protected abstract int getLayoutResourceId();
}

public class Activity1 extends BaseActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // do extra stuff 
    }

    @Override
    protected int getLayoutResourceId() {
        return R.layout.layout_for_activity1;
    }
}

My base class BaseActivity is not registered in the Manifest file and I do not get any error.

Is this a time bomb (not registering base class in Manifest) or this is the way it should be? Can someone explain why?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T04:23:27+00:00Added an answer on June 4, 2026 at 4:23 am

    According to the docs, the <activity> on the manifest:

    Declares an activity (an Activity subclass) that implements part of
    the application’s visual user interface. All activities must be
    represented by elements in the manifest file. Any that are
    not declared there will not be seen by the system and will never be
    run.

    Think about it like this: If there’s an activity (any class that extends Activity or a class that extends it) that you will navigate to at some point in your application, it needs to be declared in the manifest. Regardless of how you reach that activity. This excludes classes that only extend the Activity class but you can’t reach directly.

    Source

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created an abstract base class Animal which has public virtual abstract method
Say I have an abstract class Base, of which another abstract class Subclass extends.
Suppose I have an abstract base class, that just defines a container on which
I have a generic base class for value caching functionality. public abstract class CachedValueProviderBase<T>
I'm trying to hide window after its startup. I have own window-class which is
I have my own connection pool class public class ConnectionPool { private static final
In an abstract base class if we have some static fields then what happens
I have own component which works in my testing winform app good but when
I have a class called cache. It is an generic, abstract class responsible for
I have two classes: abstract Entity , abstract ClassA extends Entity , ClassB extends

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.