• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. M

    Creating typeconvertor to convert Int timestamp to LocalDate

    What would be the best way to go about this. I am using 2 different APIs and one returns a date as a String and the other returns date as an Int timestamp in the format of e.g. 162000360 I was using the ThreeTen backport for Date/Time classes. I have successfully created a type convertor for...
  2. M

    Consolidating setContentView(R.layout.activity_main) with ViewBinding

    I'm new to Android development and i'm trying to combine the functionality from 2 separate tutorials into one app. One of them, which i've already implemented, simply uses setContentView(R.layout.activity_main) in order to provide the main activity for it's fragments. The second uses the below...