We all know how easily and safely to create a new Activity
. Now I want to know how to remove an Activity
from my project safely.
I've created some activity in my project and feel that they are now needless and I want to delete them. But if I delete manually these files:
The activity's XML file in the
/layout
folderThe activity's Java file in the
/src
folderThe
<activity></activity>
portion from the manifest file
Then,
- Will no other data related that activity stays in my project? What are those?
- Is there any simple removal procedure like creating an activity in Eclipse?