Is it possible to start the same activity on button click. I have a button in my MainActivity and I want that when I click that button the current Activity (MainActivity) restarts (start again) ? Thanks in Advance.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Try this :)
But i dont understand why you wanna do this :P |
||||
|
The only way to do this is to launch the Intent to that Activity again. But, I don't see why you would want to do that, jut refresh the content of the Activity calling the same activity within that activity.. is redundant and doesn't make sense. |
|||||||
|

startActivity(new Intent(MyActivity.this,MyActivity.class))then callfinish()– user117 Feb 22 at 13:41