Literally speaking, You can't. Consider the .apk the same as an executable on Windows; you need the source to make changes. If you could just edit the .apk at will to change the app, you could change every app to be your property or contain your name.
Piracy comes to mind - if you could readily change any application to appear to be written by you (copyright messages, window captions, etc.), it would make it much harder to prevent theft of someone else's app. If the app is yours (meaning you wrote it), you should have the source (meaning the Java code that makes up the app that was put into the .apk), and you can change it easily. If the app was written by someone else and you purchased it, it's not your 'property' (unless you bought the source/rights as well), and you should contact the author for change requests
However there are possible ways to decompile Java programs. You can use dex2jar, it provides a somewhat good start for you to start looking for things and changes. And perhaps rebuild the code by mounting back the pieces together.
you can also use tools such as apkTool , then if you need to change the source code you would need other tools to do that, one of them could be jd-gui.
You would then need to put the apk back together and sign it, if you don't have the original key used to sign the apk this means the new apk will have a different signature.
However, let me say that it's still forbidden to change programs, as I said above. And it's extremely unethical.