Actually, I think I know what your problem is. I believe you are making this call:
public AksProductionNumbers()
in your activity constructor (as you state in your question) when you should be making it in the activity's onCreate method. getIntent will return null in the constructor.