Is it possible to use multiple methods depending on the status in onResume methods android

67 Views Asked by At

I have 3 types status of so that my app will update these status in a TextView depending on the status

So here they are working fine when I run the application

But when minimise and maximise the app these status are not updating I am confused I what way I can show them in onResume()

Hence my 3 statements are in void I cant use returns

these are my status

@Override
public void onVLoading() {
    mtc.post(new Runnable() 
    {
        @Override
        public void run() {
            mtc.setText("Buffering");
        }
    });
}
@Override
public void onVStarted() {
    mtc.post(new Runnable() 
    {
        @Override
        public void run() {
            mtc.setText("Playing");
        }
    });
}
@Override
public void onVStopped() {
    mtc.post(new Runnable()
    {
        @Override
        public void run() {
            mtc.setText("Passed");
        }
    });
}

So I want to show them at onResume in android

this is my onResume() method

@Override
    protected void onResume() {
        super.onResume();
        mVMG.connect();
    /*onVLoading()
      onVStarted()
      onVStopped()*/
    }

Actually I want to show show these text-view status at onResume()

is there any suggestion on this kind please help..

1

There are 1 best solutions below

2
On

Just create a function for showing the status.

private void showStatus(){
   mtc.setText(statusText);
}

and update the statusText variable. Make statusText variable as global static variable.

@Override
public void onVLoading() {
    mtc.post(new Runnable() 
    {
        @Override
        public void run() {
            statusText = "Buffering";
        }
    });
}
@Override
public void onVStarted() {
    mtc.post(new Runnable() 
    {
        @Override
        public void run() {
            statusText ="Playing";
        }
    });
}
@Override
public void onVStopped() {
    mtc.post(new Runnable()
    {
        @Override
        public void run() {
            statusText = "Passed";
        }
    });
}



@Override
    protected void onResume() {
        super.onResume();
        showStatus();
        mVMG.connect();

    }