Home > other >  No output being shown on Mobile Screen in Android studio
No output being shown on Mobile Screen in Android studio

Time:06-19

I am trying to run an app with the code on my android studio there is no error the app runs on the device doesn't show output I have shared a screenshot of it

java file XML code manifest file

CodePudding user response:

It seems you're not Overriding the onCreate method. Try this:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.relative_layout);

CodePudding user response:

You should try to read the warning of the xml file maybe that will help you to understand your problem, sometimes that's also happened with me but I solve these UI problems by looking and reading warning.

You should also add your code of the activity in the questions its easy to read and understand.

  • Related