Use this library for quick development.
https://github.com/vuthaiduy1990/android-wind-library/wiki/Crypto
This Android library supports some crypto methods and is well-documented.
For example:
String seed = "v56JBdk75^&*GU156OJ^*(x";
byte[] secretKey = CWCryptoUtils.generateSymmetricKey(seed, 16).getEncoded();
String originText = "Color the wind";
byte[] encrypted = CWCryptoUtils.encrypt(secretKey, CWStreamUtils.stringToBytes(originText));