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

Recent content by frappydan

  1. F

    room database problem

    I've been using sqlite forever. Finally decided to update my app to room database. Converting it was a treat but afterwards I realized I may have lost a functionality that the DBHelper allowed me to do. I am currently getting LiveData<List<type>> return from the Dao of my main table. Getting...
  2. F

    Apps RecyclerView Behavior on Swipe issue.

    I'm having an issue with swiping a recyclerview item. I've found the answers to most of what I'm trying to do and the methods do the job. The objective was to swipe a view in one direction to expose a button for one option or expose a button for another option when swiped the opposite direction...
  3. F

    inflator errors using ?attr/colors in styles

    I've been working on an app for awhile and finally decided to add support for different themes. I've read a LOT of articles and seen a lot of examples. What I've ended up doing is creating a list of colors for every theme, created definitions to them in my attrs.xml and added them as custom...
  4. F

    DataBinding with Navigation Drawer

    Started using DataBinding in my app. Was moving right along until I tried to update my main app (which is built inside of navigationDrawer. I cut out all of the controls as they are not an issue and binding lets me access them just fine. The problem is that the nav_header_main contains a lot of...
  5. F

    Listview updating item issues

    Have a listview with custom rows. 1 imageview and several textviews. My arrayAdapter works perfectly populating the list. When I click on an item I start an activity (for result) to view/modify the item. If it was modified I get a reference to each of the views in the item using...