March 2014 - RulTech
Strict Mode on Android 2.2
Set the Android Manifest to something like this. <uses-sdkandroid:minSdkVersion="8" android:targetSdkVersion="16" android:maxSdkVersion="16"/> Use the Code below in onCreate Method as shown @Override protected void onCreate() { int SDK_INT = android.os.Bu [...]
Published in
Blog Post
Android: Fragments within Fragments
I was building out the settings stuff first (the app needs credentials to work so I kinda had to start there), which was relatively easy. I wanted to create a setup flow, whereby when you start the app it checks if you have credentials that are valid and if not walks through the setup procedure. I w [...]
Published in
Blog Post