Animating Views (TextView, EditTexts, Buttons, etc) -Android Development
Adding basic animations to views such as a TextView, ImageView, EditTexts, etc is now very easy, thanks to the amazing library by daimajia.…
Read MoreAdding basic animations to views such as a TextView, ImageView, EditTexts, etc is now very easy, thanks to the amazing library by daimajia.…
Read MoreYou may have an EditText in your app to take some input from your user for a variety of reasons. But it should…
Read MoreIn this post I will be showing you how to write a code that fits the data-points to an exponential function, like: eq(1)…
Read MoreSince Android 6.0 (Marshmallow), Google has changed the way permissions used to work. Earlier the user granted permissions read/write permission to the app…
Read MoreYou might need to hide the status bar(formerly known as the notification bar) for some activities like your splash screen activity, etc. This…
Read MoreTo Hide/Show the action bar of your activity on Android Devices with API>11, just use the following codes: To Hide the action bar:…
Read MoreTo change the versionCode or the versionName, just open the build.gradle file located at and change the corresponding fields: defaultConfig { applicationId “com.bragitoff.curvefit_leastsquares”…
Read MoreTo prevent the user from going back to the splash screen on pressing the ‘back’ button, just add the following line to the…
Read MoreYou can change the compileSdk, minSdk, and the targetSdk of your app by making changes to the build.gradle file in your app. You…
Read MoreTo open a new Activity on the click of a button, just add the following method to your activity, and call it when…
Read More